HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> var txt = ""; txt += "<p>Browser Name: "+navigator.appName+"</p>"; txt += "<p>Browser CodeName: "+navigator.appCodeName+"</p>"; txt += "<p>Browser Version: "+navigator.appVersion+"</p>"; txt += "<p>Cookies Enabled: "+navigator.cookieEnabled+"</p>" txt += "<p>Browser Language: "+navigator.language+"</p>"; txt += "<p>Browser Online: "+navigator.onLine+"</p>"; txt += "<p>Platform: "+navigator.platform+"</p>";; txt += "<p>Browser's Engine Name: "+navigator.product+"</p>"; txt += "<p>User-agent header: "+navigator.userAgent+"</p>"; txt += "<p>Java Enabled: "+navigator.javaEnabled()+"</p>"; document.write(txt); </script> </body> </html>
OUTPUT
×

Save as Private