How what data should I echo from the server to ajaxically redirect my page? Say, suppose this my jQuery:
$.ajax({ type: \"POST\", url
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/';
window.location = 'http://wherever/you/want/to/go/';