Posts by hspaalves • 1 point
2 posts
-
0
votes2
answers151
viewsA: Clone and delete DIV
As I said, you can try using the clone. $(document).ready(function(){ $("#id_button").click(function(){ $("#id_div_que_deseja_clonar").clone().appendTo("body"); }); });…
-
0
votes2
answers151
viewsA: Clone and delete DIV
With Jquery I used append and remove it. I advise using a remove button instead of (a href="" id="remove") $(document).ready(function(){ $("remover").click(function(){…