I am trying to get the value of first td in each tr when a users clicks \"click\".
The result below will output aa ,ee or ii. I was thinking about using closest(\'t
In the specific case above, you could do parent/child juggling.
$(this).parents("tr").children("td:first").text()