jquery window location code example

Example 1: jquery redirect

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

Example 2: javascript get current url

var currentUrl = window.location.href;

Example 3: jquery redirect to url

$(location).attr('href', 'https://google.com');

Example 4: javascript get domain

window.location.hostname

Example 5: window location javascript

console.log ('url actual: '+window.location.href);
console.log ('url actual: '+location.href);