Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
If you just want to disable scrolling with keyboard navigation, you can override keydown event.
$(document).on('keydown', function(e){ e.preventDefault(); e.stopPropagation(); });