Selecting specific range of columns with jquery
Posted
by AdamB
on Stack Overflow
See other posts from Stack Overflow
or by AdamB
Published on 2010-05-24T17:24:27Z
Indexed on
2010/05/24
17:41 UTC
Read the original article
Hit count: 199
JavaScript
|jQuery
I'm looking to select columns 2-4 on the 2nd row in a table. Does jquery have any sort of "and" function in their selectors? Or would I have to do something like this?
$('#id tr:eq(1)').find('td:lt(5)').find('td:gt(1)')
© Stack Overflow or respective owner