SyntaxFix
Write A Post
Hire A Developer
Questions
$(this).parent().siblings(":first").text()
parent gives you the <td> around the link,
parent
<td>
siblings gives all the <td> tags in that <tr>,
siblings
<tr>
:first gives the first matched element in the set.
:first
text() gives the contents of the tag.
text()