2 clone of btn

Clones the first obj with a classname "btn" and insert it after

by luissanchezm86

HTML

<input type="button" class="btn" value="click" />

JavaScript

$(".btn").click(function(){
    var thisObj = $(this);
    var clone = thisObj.clone();
    clone.insertAfter(thisObj);
})