Search HTML Table with JQuery
- by heffaklump
I have a table and need a specific column in a specific row.
<tr></tr>
<tr>
<td></td>
<td></td>
<td class="important_column"><a href="/bla/blah/link">IMPORTANT INFO</a></td>
<td></td>
<td class="need_link_here"><a href="/I/WANT/THIS/LINK/">link</a></td>
</tr>
<tr></tr>
So if the link text in "important_column" equals the thing im looking for.
Get the link in "need link_here" column. How to do in JQuery?