The jQuery clone() Method creates a deep run time copy of set of matched DOM Elements to another location in the DOM elements and select the clones.
This is very useful for run time copies of the elements to another location in the DOM elements.
$(selector).clone(true|false)
true: specifies the event handlers which should be copied
false: default. specifies the event handlers should not be copied
Read jQuery reference for more details.
<p>This is a first paragraph.</p> <p>This is a second paragraph.</p>
<script>
$(document).ready(function(){
$("p").clone().appendTo("body");
});
</script>
In the above example, it clone all <p> elements and then insert them at the end of the <body> element.
Must Read: Add table row dynamically in jQuery
Content marketing has a hidden tax. It's not the writing itself, it's everything that happens…
Most marketing teams aren't failing because they lack data. They're failing because they can't act…
Email marketing continues to be one of the most effective ways for businesses to communicate,…
Xerox first introduced it around the mid-1970s. The need came up because the management activities…
Investing in the forex market may look to be a dangerous game. With some worthwhile…
The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…