≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Is there any method to callback a function when user click on pagination lnik?
Is there any method to callback a function when user click on pagination lnik?
vasagan
Posts: 5
Questions: 0
Answers: 0
March 2013
edited March 2013
in
General
I want to call a java script function when user click on pagination link.
Replies
allan
Posts: 65,841
Questions: 1
Answers: 10,953
Site admin
March 2013
No, but you could attach your own click listener to the pagination buttons which would do it.
Allan
vasagan
Posts: 5
Questions: 0
Answers: 0
March 2013
Yes.. below code working fine.
$('#table_instance').bind('page', function () {
//call some function here
});
This discussion has been closed.
Replies
Allan
$('#table_instance').bind('page', function () {
//call some function here
});