Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to detect if the browser is zoomed in or out (don't really care to know the value, but I assume it will need to be found anyway in the decision process). I have read a lot of other SO posts on the topic, but none of the solutions given work on FF (although there is an IE7/8 and chrome solution).

Oh, and I can't use flash, so the flash solution is out of the question.

Edit: And I must be able to detect this on the initial page load

share|improve this question
2  
I don't think a solution exists which fulfills all your requirements. I would love to be proven wrong. – thirtydot Feb 14 '11 at 14:42
7  
Whether zoom has been applied or not is frankly none of your business. – reisio Feb 14 '11 at 16:16
Can you explain why you need this? Maybe there are alternative solutions... – RoToRa Feb 14 '11 at 16:29
my layout barfs on zoom. I am not exactly sure why, but if it is something other than a trivial fix, it would cost too much to make it work with zooming. I outlined details of my problem a bit in another question stackoverflow.com/questions/4988710/… – Joda Maki Feb 14 '11 at 16:51
1  
I found a solution for FF4 and FF3.5 but no other versions of Firefox. See stackoverflow.com/questions/1713771/… – yonran Apr 14 '11 at 0:06
show 4 more comments

5 Answers

If by zoom you mean that the user pressed ctrl/cmd+[plus] and not css transformation you can detect computed font-size. Just checked in FF 4.0.1/Mac and it worked for me. To detect computed font-size I used code from this question: Get computed font size for DOM element in JS .

The value changed after zooming. You need to know what the font-size of a certain element should be (as set in css) and compare it with what it really is.

share|improve this answer

I suggest you look at this generic question. And possibly close your own as a duplicate (not voting to do this myself, since it's not "an exact dup".

share|improve this answer

Check this out... Browser Zoom Detection

share|improve this answer
Sorry, forgot to mention that I must be able to detect it on the initial page load. – Joda Maki Feb 14 '11 at 14:35
Joda specified he couldn't use flash... – acm Feb 14 '11 at 14:37

Did you try to detect the resolution, which may help you to detect the zoom.

share|improve this answer

Maybe instead of detecting the zoom you could detect the error.

For example if your layout expects an elements' offset to be at 100,200 and a query shows it's at 300,450 you'll know it's in the wrong place and you can apply your fixup/workaround.

This has the added benefit that if the zoom issue is fixed in a future version of the browser you won't be applying your fix needlessly or incorrectly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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