Skip to content

Instantly share code, notes, and snippets.

@chris-at-github
Created June 12, 2013 14:28
Show Gist options
  • Save chris-at-github/5765769 to your computer and use it in GitHub Desktop.
Save chris-at-github/5765769 to your computer and use it in GitHub Desktop.
Praktische 1 - 5 Zeiler
$.fn.equalheight = function() {
return this.height(Math.max.apply(this, $.map(this, function(e) {
return $(e).height()
})));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment