scrollbar

HTML

<div id="foo">
</div>

CSS

html, body { height: 100%; }
#foo {height: 100%; width: 0px;}

JavaScript

before = document.body.clientHeight
d = document.getElementById('foo')
d.style.width='6000px'
after = document.body.clientHeight
alert(before-after)