Skip to main content
noted correction from different answer
Source Link
Rex Miller
  • 2.7k
  • 1
  • 19
  • 26

Try

setTimeout(function() { return true; }, 10000);

The first argument expects a function. This is from memory; I haven't tested it.

Edit: What Gumbo said... late here... not sure what I was thinking.

Try

setTimeout(function() { return true; }, 10000);

The first argument expects a function. This is from memory; I haven't tested it.

Try

setTimeout(function() { return true; }, 10000);

The first argument expects a function. This is from memory; I haven't tested it.

Edit: What Gumbo said... late here... not sure what I was thinking.

Source Link
Rex Miller
  • 2.7k
  • 1
  • 19
  • 26

Try

setTimeout(function() { return true; }, 10000);

The first argument expects a function. This is from memory; I haven't tested it.