Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help, How do I create an equal columns? Re: Help, How do I create an equal columns?

#108952
poonu
Member

// using jquery

// add class ‘.eqheight’ on each columns

function EqHeight()
{
var tallestHeight = 0;
$(‘#container .eqheight’).each(function () {
var bigHeight = $(this).height();
if (bigHeight > tallestHeight) {

tallestHeight = bigHeight;
// alert(tallestHeight);

}

});
$(‘#container .eqheight’).css(‘height’, tallestHeight);
}

// (‘_ ‘) Happy Coding….