javascript get url

101

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)

javascript get domain -

window.location.hostname

get actual url in variable -

var currentLocation = window.location;

Comments

Submit
0 Comments