Created
June 14, 2012 17:58
-
-
Save jacoborus/2931797 to your computer and use it in GitHub Desktop.
Detect screen orientation on iOs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doOnOrientationChange(){ | |
switch(window.orientation) { | |
case -90: | |
case 90: | |
alert('landscape'); | |
break; | |
default: | |
alert('portrait'); | |
break; | |
} | |
} | |
window.onorientationchange = function(){ | |
doOnOrientationChange(); | |
}; | |
// Initial execution | |
doOnOrientationChange(); | |
//from http://stackoverflow.com/a/9824480/1409080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment