본문 바로가기

JQuery-js-css

웹, 모바일 접속 브라우저 구분


var mobile_filter_ = "win16|win32|win64|mac|macintel";


if ( navigator.platform ) {

 if ( mobile_filter_.indexOf( navigator.platform.toLowerCase() ) < 0 ) { 

 //mobile 

// do something

} else { 

 //pc 

// do something


 }

'JQuery-js-css' 카테고리의 다른 글

[clipboard.js] 클립보드 복사 JS 사용  (0) 2019.01.16
정확한 인터넷시간 가져오기  (0) 2018.11.23
[파일업로드] upload.html5.js  (0) 2017.07.07
IScroll 5 - GitHub - document - link  (0) 2016.11.23
Flavr 함수  (0) 2016.10.24