/ Published in: jQuery
URL: http://RealDimensions.com/
http://coda-clips.com/unify-div-heights-using-jquery
Expand |
Embed | Plain Text
function unifyHeights() { var maxHeight = 0; $('div#container').children('div').each(function() { var height = $('div#container').outerHeight(); //alert(height); if ( height > maxHeight ) { maxHeight = height; } }); $('div.floater').css('height', maxHeight); }
You need to login to post a comment.
