Bir başka Javascript kodu ilede sayfalarınıza veya yan menülerinize Kronometre koyabilirsiniz.Yada özel olarak kullanabilirsiniz.

Test etmek için Lütfen buraya tıklayın. Kodlar için yazının devamını okuyun.

<!-- TWO STEPS TO INSTALL DHTML STOPWATCH:
 
1.  Copy the coding into the HEAD of your HTML document
2.  Add the last code into the BODY of your HTML document  -->
 
<!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->
 
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  John Livingston (wavwizard_wavmaster@yahoo.com) -->
<!-- Web Site:  http://wavsyntax.bravehost.com -->
 
<style> span { cursor:pointer; color:white; background:black; } </style><script type="text/javascript"> var msec=0 var sec=0 var min=0 function start() { document.forms[0].display.value=min+":"+sec+":"+msec go=setTimeout("start()",1) msec++ if(msec==100) { msec=0 sec++ } if(sec==60) { sec=0 min++ } }
 
function stop() { clearTimeout(go) } function reset() { window.location.reload() } function over1(test) {document.getElementById(\'over1\').style.background=test} function out1(test) {document.getElementById(\'over1\').style.background=test} function over2(test) {document.getElementById(\'over2\').style.background=test} function out2(test) {document.getElementById(\'over2\').style.background=test} function over3(test) {document.getElementById(\'over3\').style.background=test} function out3(test) {document.getElementById(\'over3\').style.background=test} </script>
<!-- STEP TWO: Copy this code into the BODY of your HTML document  -->
 
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  John Livingston (wavwizard_wavmaster@yahoo.com) -->
<!-- Web Site:  http://www.extradestek.org -->
<span id="over1" onmouseover="over1('red')" onmouseout="out1('black')"></span>
 
onclick="start()"&gt;BaÅŸlat
<span id="over2" onmouseover="over2('red')" onmouseout="out2('black')"></span>
 
onclick="stop()"&gt;Durdur
<span id="over3" onmouseover="over3('red')" onmouseout="out3('black')"></span>
 
onclick="reset()"&gt;Sıfırla
 
<form> <input name="display" size="22" value="00:00:00" type="text" /> </form> <center>
<font face="arial, helvetica">extradestek.org
<a href="http://extradestek.org">extradestek.org</a></font>
</center><!-- Script Size:  2.29 KB -->