Clone paragraph tag : clone « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("p").clone().appendTo(document.body);

        });
    </script>
    <style>
      div { width:40px; height:40px; margin:10px; float:left;}
    </style>
  </head>
  <body>
    <body>

          <p>Hello</p>

 
  </body>
</html>








30.25.clone
30.25.1.Add cloned tag
30.25.2.Clone matched DOM Elements
30.25.3.Clone paragraph tag
30.25.4.clone(): useful for moving copies of the elements to another location
30.25.5.clone(true): moving copies of the elements, and their events, to another location in the DOM.