Guest User

Untitled

a guest
Oct 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function update(id) {
  2.     for (i=0;i<=5;i++) {
  3.         setTimeout("coolfunc(\'" + i + "\')",6000);
  4.     }
  5. }
  6.  
  7. function coolfunc(id) {
  8.     document.getElementById("numberDiv").innerHTML = id;
  9. }
Add Comment
Please, Sign In to add comment