I need to develop this feature for a charity site displays a number that counts up 1 every 15 seconds. This is to show how many times a kid is abused in this country.
I’ve been researching this and haven’t been able to find anything helpful yet.
I figured this piece of code was a good start:
function doSomething() {
setTimeout('doSomething()',15000);
}