home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 February / PCWorld_2003-02_cd.bin / Novinky / interval / img / 206 / SNIFFER.JS < prev   
Encoding:
Text File  |  2003-01-06  |  1.2 KB  |  43 lines

  1. <!-- 
  2.  
  3.  IE= null; //IE5+
  4.  NS= null; // Mozilla 0.9.1+
  5.  OPERA = null; // Opera 7
  6.  IE55 = null;
  7.  IE5 = null;
  8.  IE6=null;
  9.     
  10.  ua = navigator.appName.toLowerCase();
  11.  
  12.  if(ua.indexOf('explorer')>-1 && document.getElementById && document.childNodes && !document.addEventListener) {IE=true;}
  13.  if(ua.indexOf('netscape')>-1 && document.getElementById && document.childNodes && !document.all) {NS=true;}
  14.  if(ua.indexOf('opera')>-1 && document.getElementById && document.childNodes) {OPERA=true;}
  15.  
  16.  if(!IE && !NS && !OPERA && document.addEventListener) {OPERA=true;} 
  17.  
  18.  ua = navigator.userAgent.toLowerCase();
  19.  
  20.  if(IE && ua.indexOf('5.5')>-1) {IE55=true;}
  21.  if(IE && ua.indexOf('5.0')>-1) {IE5=true;}
  22.  if(IE && !IE5 && !IE55) {IE6=true;}
  23.  
  24.   
  25.  function test_prohlizec()
  26.  {
  27.  
  28.  if(!IE && !NS && !OPERA) 
  29.   {
  30.    self.location = "javascript: alert('Chyba v dokumentu "+self.location+" .Prohlizec nepodporuje metody standardu W3C DOM a neni mozno dokument spravne zobrazit.')";
  31.   }
  32.  
  33.  }
  34.  
  35.  function test_metoda(name)
  36.  {
  37.    eval("what = "+name);
  38.    if(!what) {self.location = "javascript: alert('Chyba v dokumentu "+self.location+" .Prohlizec nepodporuje metodu "+name+" a neni mozno dokument spravne zobrazit.')";}
  39.  }  
  40.  
  41.  
  42. //  -->
  43.