Ich habe HTML-Syntax wie folgt:
<table>
<tr>
<td id="click1">
<a href="somelink.html" id="click2">
here's the link
</a>
</td>
</tr>
</table>
und ich habe jquery Syntax wie diese
$('td#click1').ajaxify();
$('a#click2').fancybox();
Mein Problem ist, wenn ich auf die #click2
dann die #click1
ebenfalls ausgewählt ist.
Wie kann ich erreichen, dass nur ausgewählt wird #click2
ohne zu telefonieren #click1
?