Ahsan's Experience

sharing experiences in .net ………

scrollTop not work in IE6

scrollTop problem in IE6

I face a lots of problem ie6.Now I want to share one with you and how to solve it.
Hope that it may helps you.
divObj.scrollTop=0 moves to top of the div but it is not working in IE6.

To solve this you can use:

divObj.scrollTop = divBody.offsetTop; //for scroll to top of the div
divObj.scrollHeight = divBody.offsetHeight; //for scroll to bottom of the div

for more info please visit:
http://radio.javaranch.com/pascarello/2005/12/14/1134573598403.html

April 25, 2010 Posted by | Html, IE, Javascript, Web Browser | , , , | Leave a comment