Can we put jQuery to use to create columns of equal height? If yes, how?
Cycle through each column, and find the tallest. Then set all to that height.
var maxHeight = 0; $(".column").each(function(){ maxHeight = $(this).height() > maxHeight ? $(this).height() : maxHeight; }).height(maxHeight);?
Online Demo: http://jsbin.com/afupe/2/edit
1.4m articles
1.4m replys
5 comments
57.0k users