Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jQuery run function in a loop? Re: jQuery run function in a loop?

#105336
karlpcrowley
Participant

I’d use the setTimeout instead

x
function yourFunction() {
// content of yourFunction
setTimeout("yourFunction()", speed);
}
yourFunction();