How can I quickly get a jQuery selector for the textboxes in the the first 5 rows of a table? I have a table with many rows and many textboxes; I'm just trying to select the textboxes in the first 5 rows of the table. Is there an easy way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use lt()
Note that it's lt(5), not lt(6), since the indexes are 0-based. |
|||||||
|
|
see "http://docs.jquery.com/Selectors/nthChild#index" try width:
|
|||
|
|