If your table content remains stable after page load, you don't need Ajax or even any kind of script:
HTML Code:
<div style="width:30em;height:70em;overflow:auto;">
<table style="width:30em;" border="0">
table rows and cells here
</table>
</div>
The widths and height are just suggestions, the width of the table should be equal to, or even slightly less than the containing division. The height of the division controls how many table rows are visible at any given time. Using overflow:auto on the division allows for a scrollbar if the height of the contents of the table is greater than the height of the division.
Bookmarks