Hello all
I am stuck in a selector problem in JQuery. I have the following html structure ....
<table>
<tr>
<td rowspan="3"></td>
<td></td>
<td></td>
<td rowspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="4"></td>
<td></td>
<td></td>
<td rowspan="4"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
....
</table>
I want to select the first td in a tr having the property rowspan. How can I select this using JQuery selectors.
something like $("table > tr > td[rowspan]") selects all the td's having the rowspan property.
Regards