Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
You can also use DOM to do so. Say you have a function you call like this:
function disable_scroll() { document.body.style.overflow="hidden"; }
And that's all there is to it! Hope this helps in addition to all the other answers!