jquery - how to remove BS modal on close (it loads on scroll() ) -


Launch a modal window after scrolling at least 200 pixels. How can I turn off this model to appear on scrolling and stop appearing on scrolling?

$ (window) .scroll (function () {

  var scrollTop = $ (window) .scrollTop (); if (scrolltop> 200) {/ Modal ('show');}, 4000);} // code   

HTML The BS example is like the page:

  

Comments