Add style class to tag : addClass « jQuery « JavaScript DHTML






Add style class to tag

  


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <style type="text/css">
        a.test { font-weight: bold; color:red;}
    </style>

    <script type="text/javascript">
   $(document).ready(function(){
       $("a").addClass("test");
   });
    </script>
  </head>
  <body>
    <a href="http://java2s.com/">java2s.com</a>
  </body>
</html>

   
    
  








Related examples in the same category

1.Add class to a selected Tag
2.Add two classes
3.addClass(class) adds the specified class(es) to each of the set of matched elements.
4.Adds the class 'selected' to the matched elements.
5.Adds the classes 'selected' and 'highlight' to the matched elements.