Is there any reason the following shouldn't work in any version of IE?
$(".scroll").mouseover( function () {
$('body').animate({ scrollTop: $(document).height() }, 10000);
});
$(".scroll").mouseout( function () {
$('body').stop()
});
I've tested in 8-10 to no avail, but It's working perfectly in Chrome, Firefox, Safari. I tried wrapping the contents in a div and animating that instead of <body>
but still no luck - nothing happens at all.