jQuery – Getting Started with jQuery

Getting Started with JQuery

Prerequisites

You should have solid familiarity with JavaScript (all JavaScript video)

Summary

Topics Covered:

Using the selector

Simple uses of properties and events

Video

Reference Materials

Start with http://jquery.com/ – this is really the definitive resource for doing JQuery.

NoteĀ  the following suction used in the video has been deprecated.

$(window).load(function() { ... });

Should now be;

$(window).on('load', function() { ... });

Additional Information

COP 4813 Lectures