Skip to content

Instantly share code, notes, and snippets.

@bbatsche
Created December 10, 2014 21:53
Show Gist options
  • Save bbatsche/04d9b20134c6183b30e6 to your computer and use it in GitHub Desktop.
Save bbatsche/04d9b20134c6183b30e6 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$(".collapse-column").each(function() {
$(this).data('default-height', $(this).height());
$(this).height('80');
});
$(".collapse-column").click(function() {
var targetHeight = $(this).data('default-height');
$(this).animate({
height: targetHeight
}, 1000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment