Answers for "redirect with jquery ajax"

55

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";
Posted by: Guest on May-14-2020
0

ajax redirect in success

success: function(msg){
  window.location = "page.html";
}
Posted by: Guest on May-08-2021

Browse Popular Code Answers by Language