How what data should I echo from the server to ajaxically redirect my page? Say, suppose this my jQuery:
$.ajax({
type: \"POST\",
url
It's pretty easy:
window.location = "http://www.google.com";
;)
Use:
success: function(msg){
window.location = "page.html";
}
I don't know what you mean by "ajaxically redirect", but if you simply want the browser to redirect to another page, you can use window.location = 'http://wherever/you/want/to/go/';