I have table cells custom ids with their own value.
Can I find the one that has a known value with jQuery ?
In my example below I want to check if td with customId="three" equals three.
<table>
<tr>
<td customId="one">blah<td>
</tr>
<tr>
<td customId="two">blah blah<td>
</tr>
<tr>
<td customId="three">blah blah blah<td>
</tr>
<tr>
<td customId="four">blah blah blah blah<td>
</tr>
</table>