Book Image

Beginning jQuery

By : Frahaan Hussain
Book Image

Beginning jQuery

By: Frahaan Hussain

Overview of this book

Simple syntax and open coding standards enable developers to deploy applications in a short time. With this course, you will be able to effectively leverage all new features of jQuery 3.0 in your applications. The course begins with teaching the difference between JavaScript and jQuery. You’ll learn how to use jQuery with developer tools that are available in all modern browsers. You’ll then learn all about selecting elements, handling events, manipulating the document object model, jQuery plugins, advanced Ajax, and several advanced concepts. By the end of the course, you will successfully create a fully featured and efficient single page web application.
Table of Contents (10 chapters)
Chapter 8
Advanced Selectors, Traversing, and DOM Manipulation
Content Locked
Section 1
Lesson Overview
Sizzle is the component within jQuery that is responsible for parsing the CSS selector expressions we put into the $() function. It determines which native DOM methods to use as it builds a collection of elements that we can then act on with other jQuery methods. The combination of Sizzle and jQuery's set of traversal methods makes jQuery an extremely powerful tool for finding elements on the page. Let’s look at it in more detail.