/ Published in: jQuery
URL: http://css-tricks.com/snippets/jquery/equalize-heights-of-divs/
Expand |
Embed | Plain Text
var maxHeight = 0; $("div").each(function(){ if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } }); $("div").height(maxHeight);
You need to login to post a comment.
