Skip to content

Instantly share code, notes, and snippets.

@yoko
Created July 30, 2008 09:43
Show Gist options
  • Save yoko/3251 to your computer and use it in GitHub Desktop.
Save yoko/3251 to your computer and use it in GitHub Desktop.
(function($) {
$.fn.tall = function() {
var self = this;
var tall = 0;
setTimeout(function() {
self
.each(function() {
var height = $(this).height();
tall = height > tall ? height : tall;
})
.height(tall);
}, 100);
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment