JAVASCRIPT
javascript get current url
var currentUrl = window.location.href;
get the current url javascript
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)
get current url javascript
alert(window.location.href);
alert(document.URL);
how to get browser url in javascript
function getURL() {
alert("The URL of this page is: " + window.location.href);
}
Get the current URL with JavaScript?
console.log(window.location.href);
As noted in the comments, the line below works, but it is bugged for Firefox.
document.URL
how to get the url of a page in javascript
// this gives you just the URL without params
var currentUrlWithoutParams = window.location.href.split("?")[0];
javascript get current url
let location = window.location.href;
get current location url javascript
// get current location url javascript
var Your_Current_URL = window.location.href;
get url of website javascript
document.URL
> "http://example.com/page1.html"
document.location.href
> "http://example.com/page1.html"
get url in javaScript
location.protocol
location.hostname
location.pathname
location.hash
location.href
Get the current URL with JavaScript?
window.location.href
As noted in the comments, the line below works, but it is bugged for Firefox.
document.URL