자바스크립트로 모바일 기기와 비모바일을 구분한다.
var mobile = (/iphone|ipad|ipod|android/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
//모바일 처리
}else{
//비 모바일 처리
}
var varUA = navigator.userAgent.toLowerCase(); //userAgent 값 얻기
if ( varUA.indexOf('android') > -1) {
//안드로이드
return "android";
} else if ( varUA.indexOf("iphone") > -1||varUA.indexOf("ipad") > -1||varUA.indexOf("ipod") > -1 ) {
//IOS
return "ios";
} else {
//아이폰, 안드로이드 외
return "other";
}