Hi,
I have an auto overflowed DIV on my page, what i want to do is to make it start scrolling slowly towards the end of items of the DIV on page onload.
is that easy u think ?
Hi,
I have an auto overflowed DIV on my page, what i want to do is to make it start scrolling slowly towards the end of items of the DIV on page onload.
is that easy u think ?
Yes. Use the .load() event in jQuery to install a timer which updates the scroll position of the DIV using .scrollTop()
$("#divID").animate({'scrollTop': '600'}, 5000);
For instance.
Kind Regards
--Andy