December 2014
Beginner
806 pages
18h 10m
English
Chapter 21 gives you a good grounding in using the jQuery JavaScript Library. To help get you started with using jQuery to the best effect, here’s a comprehensive list of the selectors, objects, and methods it uses, a number of which there wasn’t room to introduce in this book, but you are ready for them, because you should now know enough to be able to use them correctly.
Please bear in mind, though, that sometimes new features are added, bugs are fixed, and other features can become deprecated or removed. So you can keep up-to-date with the latest developments, information on deprecated or removed features (not detailed here), and newer releases of jQuery, at jquery.com and api.jquery.com.
('*')('element')elements with the given tag name.('#id')id attribute.('.class')class.('selector1, selector2, selectorN').('ancestor descendant')descendants of a given ancestor.('prev + next')next that are immediately preceded by a sibling prev.('prev ~ siblings')prev element, have the same parent, and match the filtering siblings selector.('parent > child')child of elements specified ...Read now
Unlock full access