Insert cloned element after selected elements
Description
The following code shows how to insert a cloned element after selected element.
Example
<!-- w w w . j a v a 2 s.c o m-->
<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() {
$("b").clone(true).insertAfter("p");
});
</script>
</head>
<body>
<body>
<b>Hello</b>
<p>, how are you?</p>
</body>
</html>