up vote 2 down vote favorite
share [g+] share [fb]

In a dialog, I resize some images and then force the window to sizeToContent. Then, I want the dialog to center itself to the screen. How can I do this?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 1 down vote accepted

The end result would be a window that moves itself? Please don't make it too annoying :)

Anyway, you'll have to do it manually using window.moveTo and various screen properties (see https://developer.mozilla.org/en/DOM/window)

Here's an interesting example, although it doesn't center the window, it ensures it's visible: http://www.koders.com/javascript/fid3F51B87DFD457428278627805CCA8D39ADC13455.aspx?s=window#L3

link|improve this answer
Excellent, exactly what I was looking for. – John Sheares Oct 23 '09 at 16:17
feedback

A <dialog> element defines the moveToAlertPosition() and centerWindowOnScreen() convenience methods for you, and also copies them to the global scope so you don't have to scope them with document.documentElement.

link|improve this answer
feedback

I also searched around and looked to the MDC for anything which would center it but found nothing so I created this! This will work both on window and dialog.

var w=(screen.availWidth/2)-(document.getElementById('windowID').width/2);

var h=(screen.availHeight/2)-(document.getElementById('windowID').height/2);

window.moveTo(w,h);

The only thing you must change is windowID to the ID value of your window. It will work on all screen resolutions as it takes the total screen width and height then divides it in half thus giving the center of the screen then it subtracts your width and height settings to take them into account but divides them by half as well to offset the window as without the offset it will not be centered.

I hope this has helped!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.