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:

Live Demo

<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>

Updated on: 12-Jun-2020

535 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements