Oct 8, 2000 #1 np763 Programmer Sep 21, 2000 2 SG hi, can Javascript do something like executing a function on every one second.Like calling refresh every second? [sig][/sig]
hi, can Javascript do something like executing a function on every one second.Like calling refresh every second? [sig][/sig]
Oct 9, 2000 #2 vellad Programmer Jul 5, 2000 4 AU I would read the first 6 pages of lesson 3 of the Webmonkey JavaScript tutorial at http://hotwired.lycos.com/webmonkey/98/29/index2a.html?tw=programming [sig][/sig] Upvote 0 Downvote
I would read the first 6 pages of lesson 3 of the Webmonkey JavaScript tutorial at http://hotwired.lycos.com/webmonkey/98/29/index2a.html?tw=programming [sig][/sig]
Oct 9, 2000 #3 jaredn Programmer Sep 1, 1999 1,506 US window.setInterval("code", milliseconds) window.setInterval("func()", 1000) jared@aauser.com Upvote 0 Downvote
window.setInterval("code", milliseconds) window.setInterval("func()", 1000) jared@aauser.com