Skip to content

Instantly share code, notes, and snippets.

@baniol
Created May 17, 2014 06:41
Show Gist options
  • Save baniol/f64e99eb22ffe524a792 to your computer and use it in GitHub Desktop.
Save baniol/f64e99eb22ffe524a792 to your computer and use it in GitHub Desktop.
center box, jquery plugin
/**
* jQuery utility for centering a div on the screen
*
* @static
* @method $.centerBox
*/
$.fn.centerBox = function () {
var t = this;
t.css("top", Math.max(0, (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop()) + "px");
t.css("left", Math.max(0, (($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft()) + "px");
return t;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment