JavaScript Programming JavaScript > Code Examples WrapAll With More Than One Tag WrapAll With More Than One Tag <html> <head> <title>Happy Codings :-) Simple Javascript Code Examples</title> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").wrapAll("<div><b>Happy Codings :-) </b></div>"); }); </script> <style> div { border: 2px solid blue; } </style> </head> <body> <p>Happy Codings :-) </p> <p>Happy Codings :-) </p> <p>Happy Codings :-) </p> </body> </html>