window.location object
console.log(window.location.hash); // e.g., "#section1"console.log(window.location.href); // e.g., "https://www.example.com/page?query=123#section1"console.log(window.location.protocol); // e.g., "https:"console.log(window.location.host); // e.g., "www.example.com:80"console.log(window.location.hostname); // e.g., "www.example.com"console.log(window.location.port); // e.g., "80"console.log(window.location.pathname); // e.g., "/page"console.log(window.location.search); // e.g., "?query=123"
Methods
Last updated