JQuery Intro

*Click the links of the titles to watch videos on the topics.

Adding jQuery

Include jQuery from a CDN

  1. Explain CDN (Content Delivery Network) and pros/cons
  2. jQuery from CDN will be used for all exercises.

JQuery Basics:

  1. Selectors with JQuery
    • Using an element/tag as a selector: $('element')
    • Using an element's id as a selector: $('#id-name')
    • Using an element's class as a selector: $('.class-name')
  2. DOM Manipulation with jQuery

Supplemental Video

jQuery Basics

Complete and Continue