반응형
function isMobileCheck(){
var isAgent = navigator.userAgent.toLowerCase();
if( (isAgent.indexOf('iphone') != -1)||(isAgent.indexOf('sch-') != -1)||(isAgent.indexOf('sgh-') != -1)||(isAgent.indexOf('lg-') != -1)
||(isAgent.indexOf('canu') != -1)||(isAgent.indexOf('im-') != -1)||(isAgent.indexOf('ev-') != -1)||(isAgent.indexOf('nokia') != -1)
||(isAgent.indexOf('blackberry') != -1)||(isAgent.indexOf('android') != -1)||(isAgent.indexOf('shw-') != -1)){
return true;
} else {
return false;
}
}
반응형
'개발 > Javascript, ECMAScript' 카테고리의 다른 글
[jquery] closest / parent / parents (0) | 2014.05.12 |
---|---|
[jquery] bind click delegate live 차이 (0) | 2014.02.05 |
[Javascript] 클래스 개념 (0) | 2013.11.06 |
select option 관련 (0) | 2011.04.05 |
location.href 와 location.replace (0) | 2011.01.07 |
자바스크립트 엔터키 (0) | 2010.11.12 |
아이프레임 리사이징 크로스브라우징 예제 (0) | 2010.10.01 |
[자바스크립트 Javascript] 오늘 날짜 구하기 (0) | 2010.09.27 |