1.how to highlight the row when mouse is on,then de-highlight when mouse is out
2.how to update a specified row with new values?
3.how to get number of rows in table?
EDIT: the one with best answer for q2 will be marked as answer for this post:)
|
1
|
|||||
|
|
|
One:
Along with this CSS:
Two:You said update a "row" but all you can really update is cells, unless you want to create whole new cells.
Or:
Or if a table row has 3 cells, to update the first one:
Three:
|
||||||||||
|
|
|
For the first question:
For the third question:
|
||||||||||
|
|
|
1. http://docs.jquery.com/Events/mouseover I believe you can use this or .hover.
And add a over class in your CSS. 2. You don't update a row, you update the table cells inside the row.
3.
|
||||||||||
|