jQuery


Label

Just a gray day

click to go to orange

		     $("#my1").click(function(){
			   $(this).fadeOut("slow");
			   $("#my2").fadeIn("slow");
			   return false;
			 });
	
Label

Just an orangy kinda day

click to go back to gray

		     $("#my2").click(function(){
			   $(this).fadeOut("slow");
			   $("#my1").fadeIn("slow");
			   return false;
			 });
	
 

Created by Jeremy A. Snyder
February 15, 2008 @ 08:30