Return to Snippet

Revision: 40379
at February 1, 2011 01:55 by davebowker


Initial Code
$.fn.equalizeHeights = function(){
    return this.height(
        Math.max.apply(this,
            $(this).map(function(i,e){
                return $(e).height()
            }).get()
        )
    )
}

Initial URL


Initial Description


Initial Title
Equal Height Columns

Initial Tags
jquery

Initial Language
jQuery