prevent-touch-over-scroll

A Jquery plugin to stop parent/body scrolling on overflow: auto divs


License
MIT
Install
bower install prevent-touch-over-scroll

Documentation

preventTouchOverScroll

What does it do?

This plugin is useful if you have an html element with overflow:auto or overflow:scroll and you don't want the parent container to scroll when you are at the bottom.

It sorta works.

#Get Started

<script src="path/to/jquery.min.js"></script>
<script src="path/to/jquery.preventTouchOverScroll.js"></script>
<script>
  $(document).ready(function(){
    $('#myscrollything").preventTouchOverscroll();
  });
</script>

##Things to come

  • Demo file
  • destroy method