Is it possible to disable the browsers vertical and horizontal scrollbars using jQuery or javascript?
In case you also need support for Internet Explorer 6, just overflow the html
$("html").css("overflow", "hidden");
and
$("html").css("overflow", "auto");