Check Mobile Device Orientation
JavaScript
function detectMobileOrientation() {
switch(screen.orientation.angle) {
case 90:
case 270:
alert('landscape' + screen.orientation.angle);
break;
default:
alert('portrait' + screen.orientation.angle);
break;
}
}
window.addEventListener("orientationchange", detectMobileOrientation);
detectMobileOrientation()