Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Created December 4, 2014 11:06
Show Gist options
  • Save rcdexta/1599abfe4d32279383ec to your computer and use it in GitHub Desktop.
Save rcdexta/1599abfe4d32279383ec to your computer and use it in GitHub Desktop.
$.ajaxSetup({
statusCode: {
302: function (response) {
var redirect_url = response.getResponseHeader('X-Ajax-Redirect-Url');
if (redirect_url != undefined) {
window.location.pathname = redirect_url;
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment