AJAX
Basics
Data
DOM
Effects
Events
Forms
jQuery UI
Plug Ins
Traversing
clone()
will copy selected elements and insert them at the end of
the <body> or any other document element.
$(document).ready(function ()
{
$("#btnClone").click(function ()
{
$("#demo1").clone().appendTo("#demo-container");
});
});