Function wont execute after pagination

Fetchstart

New Member
This is the project i am working on. If you click on BLOGS on my site then the posts will show. Now if you click the post the full view of that particular post will be displayed. But, since i applied the simple pagination on the blog posts page, the full post view will only work on the first page. Following is the pagination loop: \[code\]jQuery('#Pagination a').live('click', function(e) { //check when pagination link is clicked and stop its action. e.preventDefault(); var link = jQuery(this).attr('href'); //Get the href attribute jQuery('#pcontent').fadeOut(500, function() { //fade out the content area jQuery("#loader").show(); // show the loader animation }).load(link + ' #pcontent', function() { jQuery("#loader").hide(); jQuery('#pcontent').fadeIn(500, function() { //load data from the content area from paginator link page that we just get from the top //hide the loader }); });});\[/code\]The full page post view is simple jquery show hide (hide everything else and show the detailed post).
 
Back
Top