Insert cloned object : insertAfter « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- insertAfter
Insert cloned object
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.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>
Related examples in the same category