Return to Snippet

Revision: 955
at August 23, 2006 05:18 by aestheticbliss


Updated Code
q1 = {
	init: function() {
		$("table.appTranslation").click(function() {
			$(this).fadeOut('slow', function() {
				$(this).html("Text to change").fadeIn('slow');
			});
		});
	}
}
q1.init();

});

Revision: 954
at August 23, 2006 05:18 by aestheticbliss


Initial Code
q1 = {
	init: function() {
		$("table.appTranslation").click(function() {
			$(this).fadeOut('slow', function() {
				$(this).html("Mother fucker").fadeIn('slow');
			});
		});
	}
}
q1.init();

});

Initial URL


Initial Description


Initial Title
JQuery fade in fade out

Initial Tags
javascript, jquery

Initial Language
JavaScript