You can try the following
<script type="text/javascript"> function stop() { return false; } document.onmousewheel=stop; </script>
You can also do this in CSS if you decide to do this using the following:
body{ overflow: hidden; }
From head to toe I came up with this. If you don't want them to scroll, you could also add some things to your CSS class, for example the following
Hope this helps!
Happy coding!;)
source share