Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2. <body>
  3. <div id="example"></div>
  4.  
  5. <script type="text/javascript">
  6.  
  7. txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
  8. txt+= "<p>Browser Name: " + navigator.appName + "</p>";
  9. txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
  10. txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
  11. txt+= "<p>Platform: " + navigator.platform + "</p>";
  12. txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";
  13.  
  14. document.getElementById("example").innerHTML=txt;
  15.  
  16. </script>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement