Full version: jsB@nk » Misc » Browser Information
URL: https://www.javascriptbank.com/browser-information.html
If your visitors are not quite sure the details of the browser they are using, you can show them with this neat little script. The script will produce a table that shows the browser name, version, platform name, and whether Java is enabled . Updated!
Full version: jsB@nk » Misc » Browser Information
URL: https://www.javascriptbank.com/browser-information.html
<div style="text-align: left; width: 50%;"><script language="javascript"><!--document.write(" <b> Internet Application Name: </b> "+ navigator.appName +"<br>")document.write("<b>Application Code Name: </b>" + navigator.appCodeName +"<br>")document.write("<b>Version number: </b>"+ navigator.appVersion +"<br>")document.write("<b>PlatForm: </b>"+ navigator.platform +"<br>")document.write("<b>User Agent: </b>"+ navigator.userAgent +"<br>")document.write("<b>Minor Version: </b>"+ navigator.appMinorVersion +"<BR>")document.write("<b>Screen resolution: </b>"+ screen.width +" x "+ screen.height +"<BR>")document.write("<b>CPU Class: </b>"+ navigator.cpuClass +"<BR>")document.write("<b>History length: </b>"+ history.length +"<br>")document.write("<br>")document.write("<b>Plugins: </b>"+ navigator.plugins +"<br>")document.write("<b>Mime Types: </b>"+ navigator.mimeTypes +"<br>")document.write("<b>Language: </b>"+ navigator.language +"<br>")document.write("<b>Document.referrer</b>"+ document.referrer +"<BR>")document.write("<b>History Previous: </b>"+ history.previous +"<BR>") if(navigator.javaEnabled() < 1){ document.write("<b>You browser is Java-Disabled </b>!"); } if(navigator.javaEnabled() == 1){ document.write("<b>Your browser is Java-Enabled </b>!"); }//--></script></div><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->