var currentOS;
$(document).ready(function(){
var mobile = (/iphone|ipad|ipod|android/i.test(navigator.userAgent.toLowerCase()));
if (mobile) { //navigator.userAgent에 /iphone|ipad|ipod|android 의 단어포함이 true 일때
// 유저에이전트를 불러와서 OS를 구분합니다.
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.search("android") > -1)
currentOS = "android";
else if ((userAgent.search("iphone") > -1) || (userAgent.search("ipod") > -1)
|| (userAgent.search("ipad") > -1))
currentOS = "ios";
} else {
// 모바일이 아닐 때
currentOS = "nomobile";
}
});
'JQuery-js-css' 카테고리의 다른 글
(box_img) 가로세로 길이 상관없이 부모박스(사이즈 고정)에 이미지 사이즈 조절 (0) | 2016.06.17 |
---|---|
daumOpen에디터 다중처리 (0) | 2016.06.17 |
Ajax FormData로 파일 저장하기.(IE10이하 버젼 제외) (0) | 2016.06.17 |
[jquery] 화면 center에 오도록 하는 function (0) | 2016.06.16 |
[window.postMessage] 크로스 도메인 iframe 높이 조절하기 (0) | 2016.06.16 |