jquery get current row value

JavaScript
function test(){
    var id = $(this).closest("tr").find('td:eq(2)').text();
    alert(id);
}

Source

Also in JavaScript: