mærkeligt - det virker her hvis du fx skriver:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "
http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html>
<head>
<title>Side</title>
<script type="text/javascript">
function checkScrollbar() {
vertical_scrollbar = (window.innerHeight && document.documentElement) ? ((document.documentElement.scrollHeight > window.innerHeight) ? true : false) : ((document.documentElement) ? ((document.documentElement.scrollHeight > document.documentElement.clientHeight) ? true : false) : false);
if (vertical_scrollbar) {alert("Scrollbar er vist");}
else {alert("Scrollbar er skjult");}
}
</script>
</head>
<body onload="checkScrollbar();">
<p>sdasd</p>
<p>sdasd</p>
</body>
</html>