このサンプルは、jQueryのcenterプラグインを利用して任意のhtml要素をセンタリングして表示します。サンプルが表示されたら、[Run!]ボタンをクリックしてください。赤のボックスが画面の中央に移動します。
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;
}