Creates a div element (and all of its contents) dynamically, and appends it to the body element.
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("<div><p>Hello</p></div>").appendTo("body") }); </script> </head> <body> <body> <form> <input type="radio" name="newsletter" value="Hot Fuzz">adf</input> </form> </body> </html>