Skip to content

Instantly share code, notes, and snippets.

@jholl
Created January 2, 2014 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jholl/8225362 to your computer and use it in GitHub Desktop.
Save jholl/8225362 to your computer and use it in GitHub Desktop.
level like objects
<script type="text/javascript">
$(document).ready(function(){
H = 0;
$('.foo').each(function(){
if ($(this).innerHeight() > H){
H = $(this).innerHeight();
}
});
$('.foo').height(H);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment