Tell me how to remove the body scrolls when opening the bootstrap modal window
1 answer
css:
body.modal-open { overflow: hidden !important; } js:
$("#myModal").on("show", function () { $("body").addClass("modal-open"); }).on("hidden", function () { $("body").removeClass("modal-open") }); - does not work (((bootstrap overrides - dizel
- replace with overflow: hidden! important; - Andrei Berzhanin
|