Answers for "Extract the domain name from a URL"

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

Code answers related to "Extract the domain name from a URL"

Code answers related to "Javascript"

Browse Popular Code Answers by Language