var divSize={divWidth:200,divHeight:100}; $(window).one('load',divSize,centerDiv) .bind('resize',divSize,centerDiv); function centerDiv(ev) { $('div#center').css( { 'background-color':'#9cf', 'position':'absolute', 'width':ev.data.divWidth, 'height':ev.data.divHeight, 'top':($(window).height()-ev.data.divHeight )/2, 'left':($(window).width()-ev.data.divWidth )/2 } ); }
<div><button id="clicked-by-jquery">jQueryにクリックされるボタン</button></div> <div id="message"></div>