I know how to detect device orientation change on iOS in Safari, but I cannot fathom out how to detect initial orientation when my page loads.

It is simple to detect if the device is in portrait or landscape mode - just divide window width with window height and compare result with 1. But I don't see a way to tell portrait from flipped and landscape left from landscape right. Is there a way to do it?

(Why do I need it? Because accelerometer data doesn't flip together with screen when a device is turned on its head. The code must therefore know the current orientation to correctly process accelerometer data.)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can check window.orientation on page load.

link|improve this answer
Ahhh, too obvious :( Thanks! – gabr Feb 5 at 19:28
feedback

Your Answer

 
or
required, but never shown

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