Posts

Showing posts from July, 2016

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");