Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Practical Web Development

You're reading from   Practical Web Development Learn CSS, JavaScript, PHP, and more with this vital guide to modern web development

Arrow left icon
Product type Paperback
Published in Jul 2015
Publisher
ISBN-13 9781782175919
Length 276 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Paul Wellens Paul Wellens
Author Profile Icon Paul Wellens
Paul Wellens
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Preface 1. The World Wide Web FREE CHAPTER 2. HTML 3. CSS 4. JavaScript 5. PHP 6. PHP and MySQL 7. jQuery 8. Ajax 9. The History API – Not Forgetting Where We Are 10. XML and JSON 11. MongoDB 12. Mobile First, Responsive Design with Progressive Enhancement 13. Foundation – A Responsive CSS/JavaScript Framework 14. Node.js A. Bootstrap – An Alternative to Foundation Index

Using jQuery selectors and methods


One of the things that make jQuery so easy to use is that you can use CSS style selectors to look for elements in your page. So rather than having to learn more JavaScript methods, you just use what you already know. In real code, this means instead of using the following:

var content = document.getElementById("content");

You can use:

var content = $('#content');

$ () is a shorthand notation for jQuery(). If you use jQuery together with a similar library, such as Dojo, check the documentation on how to keep the two apart.

The above statement will create a jQuery object, which will contain zero or one DOM elements (because there can only be one element with the id content). The next statement can potentially contain a lot more elements, as many as there are with the class green:

var greens = $('.green');

As you can tell, this is the same as in CSS, # for an id, . for a class.

Now we can start using methods. What if we wanted to change all elements of the class...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime