Tell me how to remove the body scrolls when opening the bootstrap modal window

  • what version of bootsstrap? - Andrei Berzhanin
  • 3.6 version ......... - dizel

1 answer 1

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