Skip to content

Instantly share code, notes, and snippets.

@lardissone
Created October 18, 2010 21:23
Show Gist options
  • Save lardissone/633091 to your computer and use it in GitHub Desktop.
Save lardissone/633091 to your computer and use it in GitHub Desktop.
Center element on screen
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment