vote up 1 vote down star

Is it possible to tell if the user of a website is using multiple monitors? I need to find the position of a popup but it's quite likely the user will have a multiple monitor setup. Whilst window.screenX etc. will give the position of the browser window it's useless for multiple monitors.

flag

64% accept rate
Popups suck. But if you absolutely must use them, then position them relative to their parent window - DO NOT use absolute coordinates. – Shog9 Sep 26 '08 at 16:18

5 Answers

vote up 1 vote down

You could make a well-educated guess with JavaScript's screen.width (.availWidth) and screen.height (.availHeight).

My idea was to assume (!) that monitors in general follow a certain ratio, whereas the .[avail]width should be outside of it because the screen is duplicated only in terms of width, but not height.

Writing this answer, it sounds like a severe hack though. Nothing I would really rely on.

link|flag
vote up 0 vote down

What about the size of the screen? Multiple screens have usually a great size. Just check the sizes and decide if it's reasonable to be on just one or more screens.

link|flag
vote up 0 vote down

You can't do that. You could position the popup centered on the parent window however. I think it's a better idea to show a "div" as dialog in the middle of your website, because the chance that this is popup blocked is smaller and it's IMO less annoying.

link|flag
vote up 2 vote down

I found this as a solution that someone has used... I do not see why you couldn't trust it.

[if the width is greater then (Height/3) * 4 > (Screen.Width) THEN]

[User has dual monitor]

[End If]

link|flag
Uh... I stack my screens. Height > Width. Neither screen has the same width, so if you were hugging the max-width you would end up off-screen beyond a certain height. Not to mention two-above, one below configurations. – Shog9 Sep 26 '08 at 17:55
Also, lots of monitors have wider aspect-ratios than 4:3 – Neall Sep 26 '08 at 19:30
Some machines (my own) are set up as two seperate desktops so the height and width are only returned for the screen the browser is on. – slashnick Sep 30 '08 at 12:31
vote up 0 vote down

I do not believe that it is possible right now; however js is becoming more popular for desktop use in widgets in addition to web development and that would be an excellent feature to request for a future version

link|flag
I wonder if it's something a project like Gears might implement? – slashnick Sep 26 '08 at 16:19
Gears is about storing data. – Till Sep 26 '08 at 16:22

Your Answer

Get an OpenID
or

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