Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function onbodyLoad (){
  2. var now = new Date();
  3. var hr = now.getHours();
  4. var min = now.getMinutes();
  5. var sec = now.getSeconds();
  6. document.getElementById('clockDisplay').innerHTML
  7. = "Time is " + hr + ":" + min + ":" + sec;
  8. setTimeout('onbodyLoad()', 500);
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement