removeClass(class) removes all or the specified class : removeClass « jQuery « JavaScript DHTML






removeClass(class) removes all or the specified class

 


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

   
  








Related examples in the same category

1.Add and remove style class
2.Remove style class from first paragraph
3.Remove class from even number paragraph
4.Remove class from all