Is a "click to previous/next page button" possible?
Something analog to "click to add new data button":
<input type="button" value="Add Data" onclick="jQuery('#add_list1').click()">
4 Answers
You can replace add_list1 with pager td ids.
Refer this: http://easycaptures.com/fs/uploaded/827/2947156389.png
Great it works with:
<input type="button" value="Next Page" onclick="jQuery('#next_list1_pager').click()">
Great it works with:
<input type="button" value="Next Page" onclick="jQuery('#next_list1_pager').click()">
Your Answer