Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

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://rntsoft.com/">rntsoft.com</a>   </body> </html>