I want to call jquery function on click of a bootstrap pagination link.
Supppose I want to traverse from page 1 to 2, a jquery function should be called.
I am using following code but it is not working:
$("ul.pagination").on("click","li", function(){
alert("page changed");
});