Search HTML Table with JQuery
        Posted  
        
            by heffaklump
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by heffaklump
        
        
        
        Published on 2010-06-14T13:36:55Z
        Indexed on 
            2010/06/14
            13:42 UTC
        
        
        Read the original article
        Hit count: 339
        
JavaScript
|jQuery
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? 
© Stack Overflow or respective owner