Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
To turn OFF scrolling try this:
var current = $(window).scrollTop(); $(window).scroll(function() { $(window).scrollTop(current); });
to reset:
$(window).off('scroll');