<script langauge="javascript">
var BrowserDetect = {
isFirefox : function() {
if(navigator.appName.indexOf('Netscape') >= 0) return true;
return false;
},
isExplorer : function() {
if(navigator.appName.indexOf('Explorer') >= 0) return true;
return false;
}
};
if(BrowserDetect.isFirefox()) {
alert('파이어폭스');
}
if(BrowserDetect.isExplorer()) {
alert('익스플로러');
}
</script>
var BrowserDetect = {
isFirefox : function() {
if(navigator.appName.indexOf('Netscape') >= 0) return true;
return false;
},
isExplorer : function() {
if(navigator.appName.indexOf('Explorer') >= 0) return true;
return false;
}
};
if(BrowserDetect.isFirefox()) {
alert('파이어폭스');
}
if(BrowserDetect.isExplorer()) {
alert('익스플로러');
}
</script>
'WEB_Programming' 카테고리의 다른 글
익스플로러 클립보드 복사 (0) | 2008.12.10 |
---|---|
웹 애플리케이션 디자인시 고려할 10가지 사항 (0) | 2008.11.28 |
원격지 사이트 로그인 및 로그아웃 처리 (0) | 2008.11.20 |
J2EE Tutorials > Getting Started with Web Applications (1) | 2008.11.10 |
[JSP] Request가 멀티파트 폼인지 검사하는 루틴 (0) | 2008.08.13 |