Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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>Advertisements