Using jQuery, I would like to disable scrolling of the body:
My idea is to:
body{ overflow: hidden;}
you can use this code:
$("body").css("overflow", "hidden");