toggleClass(class) adds the specified class if it is not present, removes the specified class if it is present. : toggleClass « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

            $("p").click(function () {
                      $("p").toggleClass("highlight");     
            });
    

        });
    </script>
    <style>
      .selected { color:red; }
      .highlight { background:yellow; }
    </style>    
  </head>
  <body>
    <body>
      <p class="selected highlight">Hello</p>

    </body>
</html>








30.107.toggleClass
30.107.1.ToggleClass function
30.107.2.Toggle DIV color
30.107.3.toggleClass(class) adds the specified class if it is not present, removes the specified class if it is present.