Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
try this
$('#element').on('scroll touchmove mousewheel', function(e){ e.preventDefault(); e.stopPropagation(); return false; })