Learn how to use jQuery at the Blog

Think Orange « visit

  • Added 10 months ago
  • 20 Lines of Code shown
  • 4 Links of Interest
http://thinkorange.pt
This is my Source Code and I don't want to show it here
View Source Code only (as overlay)
// That code snippet belongs to Think Orange - http://thinkorange.pt

		jQuery(window).bind("load", function() {
			jQuery("div#slider1").codaSlider()
			// jQuery("div#slider2").codaSlider()
			// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
 
		});



		$(document).ready(function(){
			$.localScroll();
			//  nav tab animation  
	        var navDuration = 150; //time in miliseconds
	        $('#nav li a').hover(function() {
	            //$(this).animate({ top : "-="+navJumpHeight }, navDuration);  
			  $(this).animate({ paddingTop:"50px"  }, navDuration);
	        }, function() {
	             $(this).animate({ paddingTop:"31px"}, navDuration);
	        });
		});