I want to wait for 30 seconds and then start polling an API in every 30 seconds. I am using following code
setTimeout(function() {
var poll = setInterval(function() {
self.poll()
}.bind(self), 30000)
}, 30000);
although this thing works well for Chrome IE and FF and safari on windows. It is not working on MAC safari.
Can anyone please guide me on this ??
regards.
.bind()when you don't usethiswithin the function? – nnnnnn Nov 14 '12 at 3:16