JavaScript Programming JavaScript > Code Examples Wrap all with border Wrap all with border <html> <head> <title>I Love Happy Codings :-) I Love Javascript Programming</title> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").wrapAll("<div></div>"); }); </script> <style> div { border: 2px solid blue; } </style> </head> <body> <p>Hello</p> <p>Hello</p> <p>Hello</p> </body> </html>