모바일 디바이스 체크 소스

<!--헤드메인 - sytle 위에 붙여넣기 --> 

<script type="text/javascript"> 
var pc_arr = location.href.split("="); 
if(pc_arr[1] != "1") 

    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 = "http://hanbando.nemoweb.kr"; 
            break; 
        } 
    } 

</script> 

<!-- location.href = "http://hanbando.nemoweb.kr";  이줄에서 "모바일주소" 입력 -->



+ Recent posts