I am using datatables, it is easy and powerful tool to generate table using jquery
The reference link is here: You can simply try at that website too.
The problem is , For example, I have a table with 20 rows. If it show 10 row per page, there are two pages. And for each row , there is a button, and I capture the click event on that button. e.g.
$('.row_button').on('click',function()){
....
});
The problem is , for the first page buttons the click event can be trigger but for the other page it doesn't , simply nothing response the script has no error in the chrome developer. I think the page navigation button affect the click event . but How to fix it? thanks