iOS Safari – How to disable overscroll but allow scrollable divs to scroll normally?
This solves the issue when you scroll past the beginning or end of the div var selScrollable=”.scrollable”; // Uses document because document will be topmost level in bubbling $(document).on(‘touchmove’,function(e){ e.preventDefault(); }); // Uses body because jQuery on events are called off of the element they are // added to, so bubbling would not work if … Read more