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
Post a Comment