Skip to content

Instantly share code, notes, and snippets.

@felipelavinz
Created November 17, 2009 19:04
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 felipelavinz/237161 to your computer and use it in GitHub Desktop.
Save felipelavinz/237161 to your computer and use it in GitHub Desktop.
tallestTable = 0;
$('#team-list li').each(function(){
if ( $(this).height() > tallestTable ) { tallestTable = $(this).height(); };
})
if (msie.msie6) $('#team-list li').css({'height': tallestTable});
else $('#team-list li').css({'min-height': tallestTable});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment