I'm using datatables plugin for jquery to show my data on the page. I have this selector when someone clicks on a row:
$('#myTable tr[class !="tableHeader"]').click(function(){
alert("clicked!");
}
and everything is OK until I click on the "Next page" which shows me next 10 results - then this click function doesn't show "clicked" message box anymore no matter which row I click.
I'm guessing that the problem is in a way how these new results (rows in the table) are shown, so please give me some ideas on how to solve this.