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 can I select an element with multiple classes in jQuery?
To select an element with multiple classes, do the following. Here, x, y, and z are our classes,
$('.x.y.z')
You can try to run the following code to learn how to select an element with multiple classes in jQuery:
<html>
<head>
<title>jQuery Selector Example</title>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".one.two").css("background-color", "grey");
});
</script>
</head>
<body>
<div class = "one two" id="div">
<p>This is first division of the DOM.</p>
</div>
<div class = "three" id = "div3">
<p>This is third division of the DOM</p>
</div>
</body>
</html>Advertisements