Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
This will completely disable scrolling:
$('html, body').css({ overflow: 'hidden', height: '100%' });
To restore:
$('html, body').css({ overflow: 'auto', height: 'auto' });
Tested it on Firefox and Chrome.