SyntaxFix
Write A Post
Hire A Developer
Questions
Nick has the right answer, but I wanted to add you could also get the cell data without needing the class name
var Something = $(this).closest('tr').find('td:eq(1)').text();
:eq(#) has a zero based index (link).
:eq(#)