$(function(){ $('.partnerlink').on('click',function(){ var data = { partner: $(this).parents('TR').find('TD:first-child').text(), link: $(this).attr('href') } $.getJSON('/partnerlink.php',data,function(result){ console.log(result) }) }) })