Add two classes
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p:last").addClass("one two"); }); </script> <style> .one { color:red; } .two { border:1px solid blue; } </style> </head> <body> <body> <p>A</p> <p>B</p> <p>C</p> </body> </html>