How do I detect when the iPhone goes into landscape mode via JavaScript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:54:47Z http://stackoverflow.com/feeds/question/850472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/850472/how-do-i-detect-when-the-iphone-goes-into-landscape-mode-via-javascript 3 How do I detect when the iPhone goes into landscape mode via JavaScript? Paul D. Waite 2009-05-11T23:04:36Z 2009-05-11T23:48:12Z <p>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).</p> <p>Can I detect this change via JavaScript?</p> http://stackoverflow.com/questions/850472/how-do-i-detect-when-the-iphone-goes-into-landscape-mode-via-javascript/850475#850475 9 Answer by Paul D. Waite for How do I detect when the iPhone goes into landscape mode via JavaScript? Paul D. Waite 2009-05-11T23:06:46Z 2009-05-11T23:48:12Z <p>Yup, via the <code>onorientationchange</code> event and the <code>window.orientation</code> property.</p> <ul> <li><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/chapter%5F7%5Fsection%5F9.html#//apple%5Fref/doc/uid/TP40006511-SW16" rel="nofollow">Documented by Apple (free sign-up required)</a></li> <li><a href="http://ajaxian.com/archives/iphone-windowonorientationchange-code" rel="nofollow">Example code on Ajaxian</a></li> </ul> http://stackoverflow.com/questions/850472/how-do-i-detect-when-the-iphone-goes-into-landscape-mode-via-javascript/850513#850513 0 Answer by Thanks for How do I detect when the iPhone goes into landscape mode via JavaScript? Thanks 2009-05-11T23:25:35Z 2009-05-11T23:25:35Z <p>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.</p> <p>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);</p>