javascript get domain url code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: 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];
Example 3: javascript get domain
window.location.hostname