Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save umkasanki/16ae9193c9c86e398ea8efcee4cf0e4e to your computer and use it in GitHub Desktop.
Save umkasanki/16ae9193c9c86e398ea8efcee4cf0e4e to your computer and use it in GitHub Desktop.
Get screen width, height, and orientation
// ----------------------------------------------
// Detect screen orientation
// ----------------------------------------------
var deviceOrientation = ''; // Declare globally to use throughout
function detectOrientation () {
var windowWidth = $(window).height();
var windowHeight = $(window).width();
if (windowWidth > windowHeight) {
deviceOrientation = 'landscape';
} else {
deviceOrientation = 'portrait';
}
}
window.addEventListener('resize', function () {
detectOrientation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment