Fade Out with pagination - problem
Hello!
I thought that I know everything about jQuery FadeOut and FadeIn, but when I tried to use jquery to pagination, I found some problem. I tried some solutions and still without success. The problem is, that FedeOut doesn't work, when FadeIn works without problem. Here is the code I have:
- jQuery(document).ready(function(){
jQuery('#link-pagination a').live('click', function(e){
e.preventDefault();
var link = jQuery(this).attr('href');
jQuery('#content-pagination').show().fadeOut(500);
jQuery('#content-pagination').load(link + ' #content-pagination', function(){ jQuery('#content-pagination').hide().fadeIn(500); });
});
});
Somebody can help me where is mistake?