Skip to content

Instantly share code, notes, and snippets.

View bogdanpetru's full-sized avatar
🍓

Bogdan bogdanpetru

🍓
View GitHub Profile
$.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", "");
});
};