Learn how to use jQuery at the Blog

Bjorn Friese « visit

  • Added 9 months ago
  • 12 Lines of Code shown
  • 0 Links of Interest
http://frieze.dk
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 Bjorn Friese - http://frieze.dk

	$(function(){
		$(".content")
			.hide();
		$("h1")
			.click(function(){
				$(".content")
					.slideUp();
				$(this)
					.next()
						.slideDown();
			});
	});