How to get a related element with Jquery?
- by Jova
<div class="severalDivs">
    <table>
        <tbody>
            <tr>
                <td class="target">
                    <a href="link"></a>
                </td>
            <tr>
        </tbody>
    </table>
    <div class="fromHere">
        <a href="somescript()"></a>
    </div>
</div>
How do I with Jquery get "link" in "target" when clicking the anchor with "somescript()" in "fromHere"?
Hope It's clear what I want to do. =)