In this code snippet i make a http call every 6 seconds to see if some data has arrived on the sever. (I could not use websockets or Server-sent events so i had to do it this way).
The thing is that when data!= '-1'
and myaddress == data.address
sometimes i get two popup windows instead of one. I don't know what can be wrong in this code but it is happening....
var id;
id = setInterval(function() {
$.get( 'https://example.com?dir='+myaddress,{}, function(data) {
if (data != '-1') {
if (myaddress == data.address) {
clearInterval(id);
//(..whatever..)
popitup(); // show's a new pop up window
}
return;
}
});
}, 6 * 1000);
The AJAX request is being made before the interval is cleared, so it's queued, and both end up being executed. You can add a check to see if the interval has been cleared with a bit of extra code: