Skip to content

Instantly share code, notes, and snippets.

@dshster
Created September 25, 2012 05:48
Show Gist options
  • Save dshster/3780198 to your computer and use it in GitHub Desktop.
Save dshster/3780198 to your computer and use it in GitHub Desktop.
jquery vertical align
jQuery.fn.valignMiddle = function(elem) {
var h = jQuery(this).height();
var h2 = jQuery(this).parent().height();
var pad = (h2-h)/2;
jQuery(this).css("padding-top", pad);
jQuery(this).css("padding-bottom", pad);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment