Web/Javascript
[JS] javascript IE check 하기
saltdoll
2010. 12. 23. 00:15
반응형
javascript를 통한, 간단한 IE 체크 방법입니다.
var IE = /*@cc_on!@*/false;
//IE specific code goes here
}else{
//code for all the other browsers
}
출처: http://devoracles.com/the-best-method-to-check-for-internet-explorer-in-javascript
반응형