Created
December 2, 2013 16:21
-
-
Save hsquareweb/7752062 to your computer and use it in GitHub Desktop.
Equal column height
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
var max_height = 0; | |
$("div.col").each(function(){ | |
if ($(this).height() > max_height) { max_height = $(this).height(); } | |
}); | |
$("div.col").height(max_height); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment