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.
Since there is no colspan=0 you can just do
$('td[colspan]').not('[colspan=1]')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With