SyntaxFix
Write A Post
Hire A Developer
Questions
You cannot disable the scroll event, but you can disable the related actions that lead to a scroll, like mousewheel and touchmove:
$('body').on('mousewheel touchmove', function(e) { e.preventDefault(); });