- 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 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>
- Related Articles
- How can I select an element by name with jQuery?
- How can I select an element by tag name using jQuery?
- How can I select an element by its class name using jQuery?
- How can I select an element by its ID attribute using jQuery?
- How to select multiple elements with jQuery?
- How to Add and Remove multiple classes in jQuery?
- How can I show and hide an HTML element using jQuery?
- Can I submit form with multiple submit buttons using jQuery?
- How do I select text nodes with jQuery?
- How can I get the ID of an DOM element using jQuery?
- How to add and remove CSS classes to an element using jQuery?
- How can I alter the color of an HTML5 canvas element using jQuery?
- How we can extend multiple Python classes in inheritance?
- How to select element with specific class and title attribute using jQuery?
- How do I check if an element is hidden in jQuery?

Advertisements