jQuery Basics

To view this screencast, add it to your cart and checkout. You can buy this screencast for any price, including FREE!

I was about to make a short screencast showing how to use a jQuery plugin I created when I realized … there are still web developers out there who haven’t used jQuery!

So … developers who aren’t yet fully comfortable with jQuery … this one is for you!

I show you how to:

I think I’ll do another screencast on Ajax with jQuery … but I hope this shows you the basics!

1 $(document).ready(function(){
2 
3   $('li').css('color', 'red');
4 
5   $('h1').click(function(){
6     alert('clicked on header with text: ' + $(this).text());
7   });
8 
9 });