/ Published in: JavaScript
Expand |
Embed | Plain Text
//The most common example you'll find setTimeout("alert('timed out');"},5000); //The best solution as this gidevs you full flexibility using 'closure' setTimeout(function() { alert("timed out"); },5000);
You need to login to post a comment.
