I created a function, which gets executed every 500 ms. On localhost it works fine, but if I upload it to a webhosting site (hostpoint), the function stops get called after some time (around 1 minute). Does a JavaScript call limit exists?
Here is the code:
abc();
function abc() {
console.log('request');
setTimeout(function () {
abc();
}, 500);
}