Skip to content

Instantly share code, notes, and snippets.

@yoko
Created March 1, 2009 08:35
Show Gist options
  • Save yoko/72276 to your computer and use it in GitHub Desktop.
Save yoko/72276 to your computer and use it in GitHub Desktop.
(function($) {
$.fn.sameHeight = function() {
var h = 0;
return this
.each(function() {
h = Math.max($(this).height(), h);
})
.height(h);
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment