Skip to content

Instantly share code, notes, and snippets.

@skwi
Created April 11, 2012 09:19
Show Gist options
  • Save skwi/2358201 to your computer and use it in GitHub Desktop.
Save skwi/2358201 to your computer and use it in GitHub Desktop.
Detect Orientation Change in Javascript
window.addEventListener("orientationchange", function() {
// Announce the new orientation number
alert(window.orientation);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment