removeClass(class) removes all or the specified class : removeClass « 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:even").removeClass("highlight");
        });
    </script>
    <style>
      .selected { color:red; }
      .highlight { background:yellow; }
    </style>    
  </head>
  <body>
    <body>
      <p class="selected highlight">Hello</p>

    </body>
</html>








30.87.removeClass
30.87.1.Add and remove style class
30.87.2.Remove style class from first paragraph
30.87.3.Remove class from even number paragraph
30.87.4.Remove class from all
30.87.5.removeClass(class) removes all or the specified class