Add cloned element

Description

The following code shows how to add a cloned element to a paragraph.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from   w w  w  .j  a  v  a2 s .  c o m-->
    $("b").clone().prependTo("p");
  });
</script>
</head>
<body>
<body>
  <b>Hello</b>
  <p>, how are you?</p>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities