RSS Git Download  Clone
Raw Blame History 263B 7 lines
$.fn.center = function () {
    this.css("position", "fixed");
    this.css("top", ($window.height() - this.height()) / 2 + $window.scrollTop() + "px");
    this.css("left", ($window.width() - this.width()) / 2 + $window.scrollLeft() + "px");
    return this;
};