Click Me!

This is the first day of the jQuery crash-course. First, the lesson shows how to download the jQuery library. Then you learn JavaScript syntax and your first jQuery command ".fadeOut". Very exciting stuff.

Here's the full script:

$(function()  {
	$('a').click(function() {
		$('#box').fadeOut(5000);
	});
});
			

Click on the "Click Me!" link below the red square to check out the fade feature. Refresh the page to do it again.

You can see all the code by viewing the source of this page (Ctrl-U in most browsers).

Check out the video here.

www.channeleaton.com