Skip to content

Instantly share code, notes, and snippets.

@sugarshin
Created September 11, 2013 08:38
Show Gist options
  • Save sugarshin/6520880 to your computer and use it in GitHub Desktop.
Save sugarshin/6520880 to your computer and use it in GitHub Desktop.
height
var maxHeight = 0;
$('.conte').each(function(){
if ( $(this).height() > maxHeight ) { maxHeight = $(this).height(); }
});
$('.conte').height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment