Skip to content

Instantly share code, notes, and snippets.

@paul-bjorkstrand
Created May 6, 2014 13:34
Show Gist options
  • Save paul-bjorkstrand/0eb09f3170fa2f4be730 to your computer and use it in GitHub Desktop.
Save paul-bjorkstrand/0eb09f3170fa2f4be730 to your computer and use it in GitHub Desktop.
Centers any element on a page
(function($, window) {
var $w = $(window);
$.fn.center = function() {
this.css({
position: "absolute",
left: Math.max(0, ($w.width() - this.outerWidth()) / 2 + $(window).scrollTop()) + "px",
top: Math.max(0, ($w.height() - this.outerHeight()) / 2 + $(window).scrollTop()) + "px"
});
};
})(jQuery, window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment