Redirect page using jQuery

You can use following methods to redirect a page using jQuery
window.location.replace("http://www.keredari.com");
window.location.href = "http://www.keredari.com";
$(location).attr('href', 'http://www.keredari.com');
$(window).attr("location","http://www.keredari.com");

Comments

Popular posts from this blog

Creating Protected routes in ReactJS

Redirect http to https in codeigniter