Spaceman Spiff: Laufleisten

Beitrag lesen

Hallo Patrick, ad 2:

im IE ab Version 5:
document.body.style.overflowX = "hidden";
oder
document.body.style.overflowY = "hidden";

für NS4:
document.width= window.innerWidth;
oder
document.height=window.innerHeight;

für NS6:
zuerst ausblenden:
document.body.style.overflow = "hidden";
document.body.style.height = window.innerHeight;
document.body.style.width = window.innerWidth;
und dann individuell einblenden:
document.body.style.overflow = "-moz-scrollbars-horizontal";
oderr
document.body.style.overflow = "-moz-scrollbars-vertical";

Gruss, Spiff.