I use this code for equalizing columns:
jQuery.fn.equalHeight=function() {
var maxHeight=0;
this.each(function(){
if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
});
this.each(function(){
$(this).height(maxHeight + "px");
if (this.offsetHeight>maxHeight) {
$(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px");
}
});
};
..does a decent job, but I have an accordion menu in one of those columns which slides in/out changing the height of the column, equalheight doesn't play nice with it. Is it possible to equalize the columns each time they're resized?
Thanks heaps!