navigator.userAgent



브라우저 userAgent 값들
iPhone, iPod, BlackBerry, Android, Windows CE, LG, MOT, SAMSUNG, SonyEricsson



<script type="text/javascript">
var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson');
for (var word in mobileKeyWords){
    if (navigator.userAgent.match(mobileKeyWords[word]) != null){
        location.href = "보내고 싶은 모바일 경로";
        break;
    }
}
</script>

'Client Standard > JavaScript & jQuery' 카테고리의 다른 글

[validation] 파일업로드 체크  (0) 2014.09.17
[프린트] window.print()  (0) 2014.09.12
[API] jQuery select box  (0) 2014.08.22
[jQuery] 이메일 창 활성화 / 비활성화  (0) 2014.05.30
[Mobile] 체크하기  (0) 2014.03.07

+ Recent posts