Answers for "get the domain name in javascript"

1

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];
Posted by: Guest on August-06-2020
5

javascript get domain name from string

const url = 'https://www.mydomain.com/blog?search=hello&world';
const domain = (new URL(url)).hostname.replace('www.','');
Posted by: Guest on August-28-2020
3

get the domain name in javascript

window.location.hostname
Posted by: Guest on April-12-2020

Code answers related to "get the domain name in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language