/ Published in: jQuery
URL: http://www.seodenver.com/simple-vertical-align-plugin-for-jquery/
Expand |
Embed | Plain Text
(function ($) { // VERTICALLY ALIGN FUNCTION $.fn.vAlign = function() { return this.each(function(i){ var ah = $(this).height(); var ph = $(this).parent().height(); var mh = (ph - ah) / 2; $(this).css('margin-top', mh); }); }; })(jQuery);
You need to login to post a comment.
