- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to select multiple elements with jQuery?
With jQuery, you can easily select multiple elements. Here’s how you can select for multiple elements such as <h1> and <p>,
$("h1, p")
You can try to run the following code to learn how to select multiple elements with jQuery −
Example
<html> <head> <title>jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("h1, p").css("color", "green"); }); </script> </head> <body> <div> <h1>Heading</h1> <p>This is demo text.</p> </div> </body> </html>
- Related Articles
- How can I select an element with multiple classes in jQuery?
- How to populate select list with jQuery?
- How to select multiple elements of a list in R?
- Select all elements with “data-” attribute with jQuery and display on Console?
- How to select a subset of the matched elements in jQuery()?
- jQuery select() with Examples
- How to wrap multiple divs in one with jQuery?
- How to use multiple JavaScript libraries along with jQuery?
- How do I select text nodes with jQuery?
- How to trigger the same function with jQuery multiple events?
- How to select elements with a specified attribute with CSS
- How to select multiple options in a dropdown list with JavaScript?
- How to select element with specific class and title attribute using jQuery?
- MySQL select query with multiple WHERE?
- How can I select an element by name with jQuery?

Advertisements