Dan
Results
4
comments of
Dan
Same problem
Same problem
Try this jQuery ``` $('#your-modal').on('show.bs.modal', function (event) { $('body').addClass('disable-scroll'); //Some actions }); $('#your-modal').on('hide.bs.modal', function (event) { $('body').removeClass('disable-scroll'); }); }); ``` CSS ` body.modal-open { overflow: hidden; position:fixed; width: 100%; }...