get domain javascript code example

Example 1: jquery get current url

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript

Example 2: javascript get current url

var currentUrl = window.location.href;

Example 3: get domain name javascript

window.location.hostname

Example 4: javascript get domain name from string

const url = 'https://www.mydomain.com/blog?search=hello&world';
const domain = (new URL(url)).hostname.replace('www.','');

Example 5: 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];