function get_ie_version {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
// IE
var version = parseInt(ua.substring(msie + 5, ua.indexOf(".", msie)));
return version;
} else {
// 그 외 브라우저
return -1;
}
}
'프로그래밍 > Javascript' 카테고리의 다른 글
firebase 정리 (0) | 2018.05.09 |
---|---|
s3 업로드 할 때 참고 cors 관련 (0) | 2016.05.20 |
Uncaught SyntaxError: Unexpected token o (0) | 2015.05.27 |
안드로이드 웹뷰에서 자바스크립트로 안드로이드 메서드 호출하기 (0) | 2014.12.03 |
ajax error 메시지 출력하기 (0) | 2014.11.27 |
IE9 이상으로 브라우저를 업그레이드하거나, 크롬, 파이어폭스 등 최신 브라우저를 이용해주세요.