Javascript environment demo

JS can detect various things on the client side.
  

location

JS Value Notes
location (complex object) location
Type "location" into Console to explore it
location.href https://humphryscomputing.com/test.javascript.html location.href
  

document

JS Value Notes
document (complex object) document
Type "console.dir(document)" into Console to explore it
document.referrer document.referrer
document.characterSet UTF-8 document.characterSet
document.lastModified 04/06/2025 18:34:29 document.lastModified
Requires server to send Last-Modified HTTP header. Look in HTTP headers for this page (how?) and you will see our server does not send this info.
  

navigator

JS Value Notes
navigator (complex object) navigator
Type "navigator" into Console to explore it
navigator.userAgent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) navigator.userAgent
navigator.appVersion 5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) navigator.appVersion
navigator.platform Linux x86_64 navigator.platform
navigator.geolocation (JS cannot read values for location without asking user.)

navigator.geolocation
The function getCurrentPosition() is used to ask user if we can get location.
Can ask automatically on page load (common) or on button click (as here).