JQuery Delete Grand Parent of Clicked Element
$(this).closest('.grand-parent-class-name').remove();
Galilo
$(this).closest('.grand-parent-class-name').remove();
$(this).parent().parent().fadeOut(300);
$(document).ready(function(){
$('#copy').clone().removeAttr("id").appendTo('#paste');
});