Skip to content

Instantly share code, notes, and snippets.

@jacoborus
Created June 14, 2012 17:58
Show Gist options
  • Save jacoborus/2931797 to your computer and use it in GitHub Desktop.
Save jacoborus/2931797 to your computer and use it in GitHub Desktop.
Detect screen orientation on iOs
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