Answers for "javascript get url host"

37

javascript get current url

var currentUrl = window.location.href;
Posted by: Guest on July-22-2019
3

javascript get domain

window.location.hostname
Posted by: Guest on April-12-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