JavaScript Programming JavaScript > Code Examples Add style class to tag Add style class to tag <html> <head> <title>Happy Codings :-) JavaScript - Learn Web Development</title> <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://javascript.happycodings.com/">http://javascript.happycodings.com/</a> </body> </html>