Created
November 17, 2009 19:04
-
-
Save felipelavinz/237161 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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