javascript get url domain code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: get domain name javascript
window.location.hostname
Example 3: get site url javascript
document.URL
> "http://example.com/page1.html"
document.location.href
> "http://example.com/page1.html"
document.location.pathname
> "/page1.html"
document.location.origin
> "http://example.com"
Example 4: how to extract domain name of url of current page in javascript
var url = window.location.href;
var domain = url.replace('http://','').replace('https://','').split(/[/?#]/)[0];