I've looked everywhere and can't find a solution. I'm using the console part of developer tools on chrome if that helps :)
I've tried various configurations such as the example below, and all give me an error
setTimeout(s)5
I've looked everywhere and can't find a solution. I'm using the console part of developer tools on chrome if that helps :)
I've tried various configurations such as the example below, and all give me an error
setTimeout(s)5
I'm not sure exactly what you are trying to do, but I think you need to pass a function and the length of timeout into the setTimeout method like this example
setTimeout(function(){ alert("Hello"); }, 3000);