Can't create element that replicate itself and give elements that themselves replicate
Hello I have this code: <p>click me to replicate</p> $(function (){ $("p").on("click", function(){ $("p:first").clone().appendTo("body"); } }); the problem is: only one is replicable.