I have a table where each row is clickable. Some columns in this table have links in them. I'd like to exclude 'link' columns from jQuery selection.
My first column, and third column contains links, so I'm doing the following after iterating through each row in the table:
row.children('td:gt(2)') // for column 3+
row.children('td:lt(2)') // for columns 0 and 1
Is there any way to join these two lines?