Javascripts > Javascript Clocks > Stop Watch Script
Script Title: Stop Watch Script
Description: Add a nifty JavaScript stop watch to your site! Comes with the basic stop/start and reset feature.
Example: Available
Credit: Script created by Java-scripts.net
Copy the following code between the <BODY></BODY> tags of your html page.<SCRIPT LANGUAGE="JavaScript"> /* For this script Visit http://java-scripts.net or http://wsabstract.com */ var ms = 0; var state = 0; function startstop() { if (state == 0) { state = 1; then = new Date(); then.setTime(then.getTime() - ms); } else { state = 0; now = new Date(); ms = now.getTime() - then.getTime(); document.stpw.time.value = ms; } } function swreset() { state = 0; ms = 0; document.stpw.time.value = ms; } function display() { setTimeout("display();", 50); if (state == 1) {now = new Date(); ms = now.getTime() - then.getTime(); document.stpw.time.value = ms; } } window.onload=display </SCRIPT> <CENTER> <FORM NAME="stpw"> Time: <INPUT TYPE="text" Name="time"> <INPUT TYPE="BUTTON" Name="ssbutton" VALUE="Start/Stop" onClick="startstop()"> <INPUT TYPE="BUTTON" NAME="reset" VALUE="Reset" onClick="swreset()"> </FORM> </CENTER>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email