I am using jquery datatables plugin. The row click functionality is working fine on the first page, when I go to any of the next pages, the row click doesn't work with .on("click", function() { ....});
I tried to replace .on() with .live() and seems to work fine. My concern is .live() has been deprecated since jquery 1.7. Is it a bug with the .on() or am I missing something ?