tags:

views:

29

answers:

1

How do I add a simple table (2 columns, 10 rows) into a section of a page. It has 10 rows because there will be 10 entries that will be dynamic (changed upon manual refresh) that come from the back-end DB. (Irrelevant but the second column will be a bit.ly address to the entry, per each entry)?

Sorry if this sounds terribly stupid, but I have no idea how to design.

The reason I asked for a jquery plug-in is because it'll look way better than an html table. Instructions on how to put all jquery code into the html page will be appreciated.

Thanks

A: 

You mean you want to style the table? Here are some CSS examples. http://robertdenton.org/reference/css-tables-tutorial.html

jQuery itself doesn't handle styles.

Tyler
Although it can with .css() or .addClass() or .removeClass() if you need to do CSS changes on the fly.
Vernon