

- Welcome to Geeksww.com
Sleep/Pause for specified number of seconds
Use the function below to do that. Function takes number of milliseconds to sleep as argument. So, if you want to pause execution of code for 2 seconds you'll pass 2000 (2 x 1000) as argument to this function.
function javascript_sleep(milliseconds) { var date = new Date(); var curDate = null; do { curDate = new Date(); }while(curDate - date < milliseconds); }
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I recommend thoroughy testing on a production-like test system first before moving to production.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, install cairo, php, java, install mysql, laptop, linux, mysql mysql, mysql, source code, mysql initialization, tools, ubuntu
Similar Tutorials:
- How to execute a function at regular intervals using Javascript
- Bundle, validate, compress javascript files
- Trim whitespaces from both ends of a string, using Javascript
- How to setup node.js/express.js, compass, bootstrap project
- How to find if argument is numeric or not, using Javascript
Tutorials in 'Web Development > Javascript' (more):
- Bundle, validate, compress javascript files
- How to execute a function at regular intervals using Javascript
- Go to Top of the Page Using Javascript
- Removing Whitespaces from Beginning of a String (Left Trim), using Javascript
- Removing Ending Whitespaces from a String (Right Trim), using Javascript
Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.