Reputation: 671
I am using a query bumpbox plugin with the webpage, I am working on but I can still scroll away from the bumpbox when I am using it. I was wondering if there was some sort of jquery method that will keep the webpage from scrolling or just scroll the opposite way with the same distance that the user scrolled.
Upvotes: 1
Views: 7856
Reputation: 6403
Easiest way to achieve this
$("body").css("overflow", "hidden");
Upvotes: 1