Skip to content

Instantly share code, notes, and snippets.

@bogdanpetru
Last active August 29, 2015 14:06
Show Gist options
  • Save bogdanpetru/481527e8067740215fb5 to your computer and use it in GitHub Desktop.
Save bogdanpetru/481527e8067740215fb5 to your computer and use it in GitHub Desktop.
$.fn.makeEqual = function(){
var self = this,
heights = $.map(this, function(el){return $(el).height();}),
heighestHeight = Math.max.apply(null, heights);
this.removeHeight = function(){
$.each(self, function(i, el){
$(el).css("min-height", "");
});
};
return this.css("min-height", heighestHeight + "px");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment