View Single Post
Old 02-15-2008, 07:54 PM   #5 (permalink)
Smiggy
New Hunter
 

Join Date: Dec 2007
Location: United Kingdom - Dorset - Bournemouth
Posts: 85
iTrader: 0 / 0%
Hunter Bux: 5.00
Smiggy will become famous soon enoughSmiggy will become famous soon enough
Send a message via MSN to Smiggy
Default

Code:
<script>
x = 0;
function count()
{
	Object = document.getElementById('COUNT');
	Object.innerHTML = "<a onClick=\"count()\" id=\"COUNT\">" + x + "</a>";
	x = x + 1;
	setTimeout("count()",1000);
}
</script>

<a onClick="count()" id="COUNT">Click to begin Counter.</a>
__________________
<!-- I can type the entire Alphabet in 2.19 seconds -->

/* (X/D)Html, Css, Javascript, Ajax, Xml (DTD), PHP, MySQL, E4X */
/* Learning C++ and German */
Smiggy is offline   Reply With Quote