Toggle Between Two Classes in jQuery



To toggle between two classes in jQuery, use the addClass() and removeClass() method. You can try to run the following code to toggle between two classes in jQuery −

Example

Live Demo

<html>
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
          $("a").click(function(){
             $("a.active").removeClass("active");
             $(this).addClass("active");
          });
         });
      </script>
      <style>
         .active {
            font-size: 22px;  
         }
      </style>
   </head>
   <body>
      <a href="#" class="one">One</a>
      <a href="#" class="two">Two</a>
      <p>Click any of the link above and you can see the changes.</p>
   </body>
</html>
Updated on: 2020-02-14T05:07:17+05:30

786 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements