How can I make a button redirect my page to another page like dialog in jquery only code example
Example: 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";