js get url host code example
Example 1: javascript get url path
window.location.pathname
Example 2: javascript get base url
console.log(window.location.origin);
Example 3: js get hostname from url
url = "http://www.example.com/path/to/somwhere";
urlParts = /^(?:\w+\:\/\/)?([^\/]+)([^\?]*)\??(.*)$/.exec(url);
hostname = urlParts[1]; // www.example.com
path = urlParts[2]; // /path/to/somwhere