Skip to content

Instantly share code, notes, and snippets.

@minimaldesign
Last active December 27, 2015 16:29
Show Gist options
  • Save minimaldesign/7355015 to your computer and use it in GitHub Desktop.
Save minimaldesign/7355015 to your computer and use it in GitHub Desktop.
Detect orientation change
<script>
function onOrientationChange()
{
switch(window.orientation)
{
case -90:
case 90:
alert('landscape');
break;
default:
alert('portrait');
break;
}
}
window.addEventListener('orientationchange', onOrientationChange);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment