Window Browser JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
Publisher: John Wiley & Sons CopyRight 2001
ISBN: 0764533428
*/


UserAgent Property Library

// basic brand determination
function isNav() {
    return (navigator.appName == "Netscape")
}
function isIE() {
    return (navigator.appName == "Microsoft Internet Explorer")
}
// operating system platforms
function isWindows() {
    return (navigator.appVersion.indexOf("Win") != -1)
}
function isWin95NT() {
    return (isWindows() && (navigator.appVersion.indexOf("Win16") == -1 && 
        navigator.appVersion.indexOf("Windows 3.1") == -1))
}
function isMac() {
    return (navigator.appVersion.indexOf("Mac") != -1)
}
function isMacPPC() {
    return (isMac() && (navigator.appVersion.indexOf("PPC") != -1 || 
       navigator.appVersion.indexOf("PowerPC") != -1))
}
function isUnix() {
    return (navigator.appVersion.indexOf("X11") != -1)
}
// browser versions
function isGeneration2() {
    return (parseInt(navigator.appVersion) == 2)
}
function isGeneration3() {
    return (parseInt(navigator.appVersion) == 3)
}
function isGeneration3Min() {
    return (parseInt(navigator.appVersion.charAt(0)) >= 3)
}
function isNav4_7() {
    return (isNav() && parseFloat(navigator.appVersion) == 4.7)
}
function isMSIE4Min() {
    return (isIE() && navigator.appVersion.indexOf("MSIE") != -1)
}
function isMSIE5_5() {
    return (navigator.appVersion.indexOf("MSIE 5.5") != -1)
}
function isNN6Min() {
    return (isNav() && parseInt(navigator.appVersion) >= 5)
}
// element referencing syntax
function isDocAll() {
    return (document.all) ? true : false
}
function isDocW3C() {
    return (document.getElementById) ? true : false
}
// fill in the blanks
function checkBrowser() {
    var form = document.forms[0]
    form.brandNN.value = isNav()
    form.brandIE.value = isIE()
    form.win.value = isWindows()
    form.win32.value = isWin95NT()
    form.mac.value = isMac()
    form.ppc.value = isMacPPC()
    form.unix.value = isUnix()
    form.ver3Only.value = isGeneration3()
    form.ver3Up.value = isGeneration3Min()
    form.Nav4_7.value = isNav4_7()
    form.Nav6Up.value = isNN6Min()
    form.MSIE4.value = isMSIE4Min()
    form.MSIE5_5.value = isMSIE5_5()
    form.doc_all.value = isDocAll()
form.doc_w3c.value = isDocW3C()
}



About This Browser



Brand


Netscape Navigator:
Internet Explorer:


Browser Version


3.0x Only (any brand):


3 or Later (any brand): 


Navigator 4.7: 


Navigator 6+: 


MSIE 4+: 


MSIE 5.5:




OS Platform


Windows: 
Windows 95/98/2000/NT: 


Macintosh: 
Mac PowerPC: 


Unix: 




Element Referencing Style


Use document.all


Use document.getElementById() SIZE=5>