Is "doScroll" still supported by Microsoft in IE8? I can t get it to work at all.
Here s a test page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<div id="a" style="overflow:auto; width:300px; height:300px; border:1px solid black;">
<div style="width:200px; height:500px; background:blue;">
</div>
</div>
<button onclick="document.getElementById( a ).doScroll( scrollbarDown )">Down</button>
<button onclick="document.getElementById( a ).doScroll( scrollbarUp )">Up</button>
</body>
</html>
The "Down" and "Up" buttons work fine in IE6 and IE7, as well as IE8 in "Compatibility View". But they have no effect in IE8 Standard View. (The DOCTYPE is necessary.)
Any ideas?