I am writing a page which uses a lot of in situ editing and updating using jQuery for AJAX.
I have come accross a problem which can best be summarized by the workfl
live is deprecated, use .on() like such:
$('#table tbody').on('click', 'tr', function(e){ var row = $(this).find('td:first').text(); alert('You clicked ' + row); });