Skip to content

Instantly share code, notes, and snippets.

@verteb
Created June 12, 2013 13:52
Show Gist options
  • Select an option

  • Save verteb/5765454 to your computer and use it in GitHub Desktop.

Select an option

Save verteb/5765454 to your computer and use it in GitHub Desktop.
Mobile Orientation Change
function doOnOrientationChange()
{
switch(window.orientation)
{
case -90:
case 90:
alert('landscape');
break;
default:
alert('portrait');
break;
}
}
window.addEventListener('orientationchange', doOnOrientationChange);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment