Hello I have this snippet of code that will fire some even after time that I choose.
The problem is that if, for example I put 3 seconds it will fire every 3 seconds, what I need is it to fire only once after 3 seconds.
function playSound(timeLeft){
var sendDataTimeout = function(){
alert('OK');
}
var intervalReference = 0;
clearInterval(intervalReference);
intervalReference = setInterval(sendDataTimeout, timeLeft);
}

setTimeoutinstead. – squint Mar 16 '12 at 17:29intervalReferenceglobal (move it outside of theplaySoundfunction and then clear it insidesenDataTimeout- but I would opt in forsetTimeout– scibuff Mar 16 '12 at 17:30