Skip to content

Instantly share code, notes, and snippets.

@Stasevi4
Created November 9, 2014 06:07
Show Gist options
  • Save Stasevi4/957b8fbcbca4c7b283f0 to your computer and use it in GitHub Desktop.
Save Stasevi4/957b8fbcbca4c7b283f0 to your computer and use it in GitHub Desktop.
Vertical Align of element jQuery
(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
return this.each(function(i){
var ah = $(this).height();
var ph = $(this).parent().height();
var mh = Math.ceil((ph-ah) / 2);
$(this).css('margin-top', mh);
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment