Is it possible to disable the browsers vertical and horizontal scrollbars using jQuery or javascript?
In case you need possibility to hide and show scrollbars dynamically you could use
$("body").css("overflow", "hidden");
and
$("body").css("overflow", "auto");
somewhere in your code.
1.4m articles
1.4m replys
5 comments
57.0k users