más que un contador, sería sumar y ó restar 100 al valor inicial y el resultante, por ejemplo para 0
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript"> //<![CDATA[
function incrementar(){
var valor = document.getElementById('cuenta').value;
var valor = parseInt(valor);
document.getElementById('cuenta').value = valor+100;
}
function reducir(){
var valor = document.getElementById('cuenta').value;
var valor = parseInt(valor);
if (valor >= 100){
document.getElementById('cuenta').value = valor-100;
}
}
//]]>
<input type="button" value="incrementar" onclick="incrementar()"/> <input type="button" value="reducir" onclick="reducir()"/><br /> <input type="text" value="0" id="cuenta" />
Saludos