Q:

get current url js

var currentUrl = window.location.href;
21

 document.getElementById("demo").innerHTML =
"Page location is " + window.location.href;

 
2
window.location.hostname
2
window.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
0

New to Communities?

Join the community