Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-01-2011, 03:46 AM   PM User | #1
griffinjt
New to the CF scene

 
Join Date: Feb 2011
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
griffinjt is an unknown quantity at this point
AJAX Pagination Fade Effect Not Working

Hello,

I have the following script below that will allow me to have AJAX pagination. The AJAX pagination part works fine, but the fadeOut/fadeIn functions do not work at all. I'm not sure what I am doing wrong here, so I would like some help to get this working.

Code:
<script type="text/javascript">
jQuery(document).ready(function(){	
	jQuery('.numbered_nav a').live('click', function(){
		var link = jQuery(this).attr('href');
		jQuery('#archive_wrapper').fadeOut(500).load(link+' .portfolio-archives', function(){ jQuery('#archive_wrapper').fadeIn(500); });	
	});	
});
</script>
Your help is appreciated!

Thomas
griffinjt is offline   Reply With Quote
Old 03-01-2011, 12:47 PM   PM User | #2
harbingerOTV
Senior Coder

 
Join Date: Jan 2005
Location: Memphis, TN
Posts: 1,769
Thanks: 8
Thanked 127 Times in 125 Posts
harbingerOTV will become famous soon enough
Try this and see if it works.


Code:
<script type="text/javascript">
jQuery(document).ready(function(){	
	jQuery('.numbered_nav a').live('click', function(){
		var link = jQuery(this).attr('href');
		jQuery('#archive_wrapper').fadeOut(500, function(){
			jQuery('#archive_wrapper').load(link+' .portfolio-archives', function(){ 
				jQuery('#archive_wrapper').fadeIn(500); 
			});
		});	
	});	
});
</script>
__________________
Stop making things so hard on yourself.
i is tugbucket :: help raise tugburg :: Whitehaven Kiwanis
harbingerOTV is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:09 AM.


Advertisement
Log in to turn off these ads.