I'm trying for the life of me to get this plugin to work but I'm not understanding the status function so retry is not firing.
$.poll(10000, function(retry){
$.get('willfail', function(response, status){
if (status == 'success') {
// Do something
alert("YES");
} else {
alert("NO");
//retry();
}
})
})
If I set the get request to '/' it will give me the alert YES message, but as it is, the alert No message never gets fired despite the ELSE.
I'm using a jquery polling plugin:
https://github.com/jeremyw/jquery-smart-poll
Any ideas?