ScrollTop not working in IE
The reason things like this don't work on one browser or another is usually due to something like:
window.document.body.scrollTop++;
You can't just do that because some browsers have that value as a string, e.g. "5px" and some have it as a number.
Try:
document.documentElement.scrollTop = x // where x is some integer
Try this
window.scroll(0,0) //x-axis, y-axis