Skip to content

Instantly share code, notes, and snippets.

@theirf
Created December 9, 2013 08:34
Show Gist options
  • Save theirf/7869132 to your computer and use it in GitHub Desktop.
Save theirf/7869132 to your computer and use it in GitHub Desktop.
$('.dataCard').not('.focused').each(function(){
var div = $('<div />', {
css: {
height: $(this).height();
}
});
$(this).replaceWith(div);
div.animate({
height: 0
}, function(){
$(this).remove();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment