JavaScript Programming JavaScript > Code Examples Add paragraph and set the style Add paragraph and set the style <html> <head> <title>Happy Codings :-) Javascript Programming</title> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("div").css("color", "red").add("p").css("background", "yellow"); }); </script> <style> div { width:40px; height:40px; margin:10px; float:left;} </style> </head> <body> <div>Happy Codings :-)</div> <div>JavaScript Code Examples</div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </body> </html>