Skip to content

Instantly share code, notes, and snippets.

@gerasimua
Created August 19, 2014 15:32
Show Gist options
  • Save gerasimua/bacc3d1dd24cd22b3625 to your computer and use it in GitHub Desktop.
Save gerasimua/bacc3d1dd24cd22b3625 to your computer and use it in GitHub Desktop.
Ajax login check on ajax
$(function(){
$.ajaxPrefilter(function(options, _, jqXHR) {
jqXHR.success(function(data) {
if(data.indexOf('SOMEONSWER') != -1){
document.body.innerHTML = '';
window.location.pathname = '/LOGINURL';
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment