I am needing to clone an element and put the clone in the exact same or after spot.
I am cloning like so:
var holderColumn = $('.holder').parent('.column');
$('.holder').clone().appendTo(holderColumn).removeClass('holder').addClass('olderHolder').css('background', 'red');
So I am appending the clone to the original's parent. How can I append it to the original's parent, but right after the original?