select td elemensts with colspan
dom, jquery
Solution
Since there is no colspan=0 you can just do
$('td[colspan]').not('[colspan=1]')
Problem
How can I get all td elements with 'colspan' greater than 1 in jQuery? ``` var nodes = $('td[colspan>1]'); ``` The code above seems doesn't work.