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
2.1m questions
2.1m answers
60 comments
57.0k users