get protocol and domain from url js code example
Example: 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];
var url = window.location.href;
var domain = url.replace('http://','').replace('https://','').split(/[/?#]/)[0];