Instead of having the whole window that scrolled (found on the web):
function pageScroll() {
window.scrollBy(0,50); // horizontal and vertical scroll increments
scrolldelay = setTimeout('pageScroll()',100); // scrolls every 100 milliseconds
}
than in the HTML code
<body onLoad="pageScroll()">
,
I would rather want only my table to jump/scroll down until the last row.
Do I need to create a new method for the google table?
Thx