vote up 3 vote down star
3

I’m writing a web site targeted at the iPhone. I’d like to set a class on the body element when the iPhone’s orientation changes (i.e. when the user turns the phone into landscape and/or portait mode).

Can I detect this change via JavaScript?

flag

78% accept rate

2 Answers

vote up 9 vote down check

Yup, via the onorientationchange event and the window.orientation property.

link|flag
That's also an elegant solution. – Thanks May 11 at 23:26
vote up 0 vote down

You could check the document body width. If it suddenly becomes smaller or bigger, you know what happened. You may measure it with an interval.

window.setInterval(function() { // check body with here and compare with global variable that holds the last measurement // you may set a boolean isLandscape = true if the body with became bigger. }, 50);

link|flag
Not entirely sure that would work: document.body.clientWidth seems to return the same value in portrait and landscape (at least on the page I’m working on). There might be other properties you could check though. – Paul D. Waite May 11 at 23:50
You would have to use something like getComputedStyle, and ask for the computed width of the body tag. If that doesn't work in the safari, try currentStyle. Also make sure that the body tag receives a width=100%. – Thanks May 12 at 8:30
Yeah, that could work. It’s just that Mobile Safari’s notion of dimensions seems a bit abstract, because of the scaling it does with the iPhone’s screen. You don’t seem to actually get more pixel width (in terms of your layout) when it goes landscape, even though there are more physical pixels available. I haven’t actually checked what the various properties return though. – Paul D. Waite May 12 at 9:22

Your Answer

Get an OpenID
or

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