Answers for "js get url host"

7

javascript get url path

window.location.pathname
Posted by: Guest on June-06-2020
2

javascript get base url

console.log(window.location.origin);
Posted by: Guest on March-04-2020
0

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
Posted by: Guest on April-09-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language