EN
JavaScript - get current URL
3 points
In this article, we would like to show you how to get the current URL using JavaScript.
Quick solution:
xxxxxxxxxx
1
location.href
or:
xxxxxxxxxx
1
document.URL
In this example, we use location.href
to get the current URL.
xxxxxxxxxx
1
console.log(location.href);
In this example, we use document.URL
to get the current URL.
xxxxxxxxxx
1
console.log(document.URL);