Within a <table> each first <td> of every row has an <a> tag.
But I want the whole <tr> to be clickable.

To avoid recursion I've put a .one() event on the <tr> like so:

$("table.vacatures tbody tr").one("click", function(){
   $(this).find("a:first").click();
});

But the click on the <a> tag will not fire. Why?

Reply via email to