Given some click event for a table row:
$("tr.somerow").click(function(){
//do some stuff
//can I determine the TD under the cursor at the time of clicking?
})
Can I determine which TD (or any child elements) was under the cursor at the time of clicking?
To find the clicked
<td>regardless of any child elements, usevar target = $(e.target).closest("td");instead.