Clone matched DOM Elements : clone « jQuery « JavaScript DHTML






Clone matched DOM Elements

   

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



        });
    </script>


  </head>
  <body>
    <body>
       <b>Hello</b><p>, how are you?</p>
    </body>
</html>

   
    
    
  








Related examples in the same category

1.Add cloned tag
2.Clone paragraph tag
3.clone(): useful for moving copies of the elements to another location
4.clone(true): moving copies of the elements, and their events, to another location in the DOM.