/js_intro_jquery

Primary LanguageJavaScriptMIT LicenseMIT

General Assembly Logo

Javascript: Introduction to jQuery

Objectives

By the end of this lesson, students should be able to:

  • Substitute jQuery methods for vanilla JS DOM manipulation methods
  • Reference jQuery documentation when learning a new technique

Instructions

  1. Fork and clone this repo.
  2. Change into the project directory.
  3. Follow your instructor's instructions.

Exercise

The code provided in this repo is a simple list-keeping app. We worked through this code yesterday, reading and annotating to get a better idea of how the app worked.

You may either follow along as I refactor this code to use jQuery, or you may focus on taking notes. The app will be available in its jQuery implementation on another branch.

Our general approach will be:

  1. npm install to install dependencies.
  2. grunt browserify to put all of our JS in one file (this will be important later).
  3. Change our application code to use jQuery. When we don't know how to do something, we'll first Google for a hint and the check the jQuery documentation.
  4. grunt browserify and refresh the page each time we want see our changes.
  5. Commit our changes when we've finished.

Notes

When reading the jQuery documentation, be sure to scroll through the whole document to ensure you're looking at the correct method signature. Most jQuery methods change their behavior depending on the number of arguments they have when called.

For example, have a look at .val(). Note in the table of contents that there are two method signatures, .val() and .val(value). This is our hint that .val() can do two things.

Reading the documentation, we discover that .val() is getter on an element, but that .val(value) is a setter on an element. Be sure you're using the correct method. Reading examples is very helpful, and the jQuery examples in the docs are fully functional!

Common jQuery Functions

Here is a list of most commonly used jQuery API functions:

We'll count off and take a few minutes to research these methods. The goal is to explain what each method does in your own words. We'll share our thoughts and compile a reference list.

Additional Resources