Question 1: Why not change pagination after click (pagination page change but it no)?
I mean is here in my example (this not change after click):
EXAMPLE: My code
Question 2: I want putting an animate like this for pagination table but stronger: http://jsfiddle.net/wY3Us/3/
Js code:
$('#pagination a').live('click', function(e) {
e.preventDefault();
$.get( $(this).attr('href'), function(html) {
$('table#paginate').replaceWith( $(html).find('table#paginate') );
});
return false;
});
With respect
Change your javascript to this:
And your html should look like this:
And make sure you have the following lines in your CSS:
GoodLuck!