/ Published in: jQuery
Prevent scrolling
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Prevent Scrolling $(document).bind("touchmove",function(event){ event.preventDefault(); });