I have this:
$('table.data td').click(function() {
}
But the problem is this also fires when I click on links within that column. How can I prevent that?
Tried something like table.data td :not(a)
but that doesn't seem to work at all..
Thanks.
--
Nevermind, just found out about e.target.nodeName! (if that is the best way to deal with this: != 'A')