cycling jQuery_Succinctly | Page 80
var $this = $(this);
$this.clone(true).insertAfter(this);
// Clone element and its events.
$this.text('button').unbind('click'); // Change text, remove event.
});
$('.clone').click(function () {
var $this = $(this);
$this.clone().insertAfter(this); // Clone element, but not its events.
$this.text('link').unbind('click'); // Change text, remove event.
});
})(jQuery);