basically just bind the event handlers to the parent, such as the
tbody or table, check the event.target and act:

$('#myTable tbody').bind('click', function(e)
{


});

Reply via email to