I need to display a large table on a web page and need to prevent the first column and first row from scrolling. I\'d like to dynamically set the vertical
If you don't like to use heavy loaded plugins you could do:
Create a table with only the fixed table header
Create a div with fixed width (remember the scrollbar width) and height and set scrolling Y direction. Within this div you place the body of the table.
Create the 3th and last table and place the table below the div to make it look like 1 big table.
HEADER
BODY
(div is scrollable)
Foot
If you need to make changes dynamicly use bare javascript, you don't need to use jquery or other heavy plugin.