views:

39

answers:

3

I have simple html table on the page. I want to add horizontal-vertical scroll bars to the table when the browser is resized to continue showing the table content.

How can I do this?

A: 

http://farinspace.com/jquery-scrollable-table-plugin/

try this.

Martin Ongtangco
In this example, the table already has a vertical scroll. I need to add scroll dynamically when the page is shrinked.
penguru
+1  A: 

In the table element... eg: Iframe, frameset, div etc... add:

scrolling="auto"

Element scrolling

David
isn't this for frames only?
Marko
A: 

You can do this with CSS using style="overflow: auto;" or style="overflow: scroll;".

banzaimonkey