내가 보려고 쓰는 블로그
사용자의 브라우저 타입 체크하기 var agent = window.navigator.userAgent.toLowerCase(); if ( (window.navigator.appName == 'Netscape' && agent.indexOf('trident') != -1) || (agent.indexOf("msie") != -1)) { // ie일 경우 return 'ie'; }else{ // ie가 아닐 경우 return 'others'; }