jQuery toggleClass( class ) Method

« Previous Chapter Next Chapter »

Description:

The toggleClass( class ) method adds the specified class if it is not present, removes the specified class if it is present.

Syntax:

Here is the simple syntax to use this method:

Example

selector.toggleClass( class )
                                        

Parameters:

Here is the description of all the parameters used by this method:

  • class: The name of CSS class.

Example:

Following example would remove a class with one click and in second click it would again add the same class:

Example

<html>
<head>
<title>The Selecter Example</title>
<script type="text/javascript" src="../../js/jquery-2.2.0.js">
</script>
   
<script type="text/javascript" language="javascript">
   $(document).ready(function() {
    $("p#pid").click(function () {
      $(this).toggleClass("red");
    });
   });
</script>
<style>
  .red { color:red; }
</style>
</head>
<body>
<p class="green">Click following line to see the result</p>
<p class="red" id="pid">This is first paragraph.</p>
</body>
</html>
                                        

With the first click it would generate following result, in second click it would revert to its original form as shown above:

Example

<html>
<head>
<title>The Selecter Example</title>
<script type="text/javascript" src="../../js/jquery-2.2.0.js">
</script>
   
<script type="text/javascript" language="javascript">
   $(document).ready(function() {
    $("p#pid1").click(function () {
      $(this).toggleClass("red");
    });
   });
</script>
<style>
  .red { color:red; }
</style>
</head>
<body>
<p class="green">Click following line to see the result</p>
<p id="pid">This is first paragraph.</p>
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!