How do I detect when the iPhone goes into landscape mode via JavaScript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T03:54:47Zhttp://stackoverflow.com/feeds/question/850472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/850472/how-do-i-detect-when-the-iphone-goes-into-landscape-mode-via-javascript3How do I detect when the iPhone goes into landscape mode via JavaScript?Paul D. Waite2009-05-11T23:04:36Z2009-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#8504759Answer by Paul D. Waite for How do I detect when the iPhone goes into landscape mode via JavaScript?Paul D. Waite2009-05-11T23:06:46Z2009-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#8505130Answer by Thanks for How do I detect when the iPhone goes into landscape mode via JavaScript?Thanks2009-05-11T23:25:35Z2009-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>