Hola que tal. tengo este script pero no me corre por sintaxis
Código Javascript
:
Ver original<script type="text/javascript">
var total = document.getElementById("total").value;
function comprobarChecks()
{
var checks = document.getElementsByTagName("input"); //recojo todos los input
for(i=0;i<checks.length;i++)
{
if(checks[i].type=="checkbox") //solo contemplo los de tipo checkbox
{
if(checks[i].checked) //si esta checkado agrego a total su valor
sumar(checks([i].value);
}
else
restar(checks[i].value);
}
}
function sumar(valor)
{
total += valor;
document.formulario.total.value=total;
}
function restar(valor)
{
total-=valor;
document.formulario.total.value=total;
}
</script>
Al parecer el error esta en la linea 11
Alguna idea? se los agradeceria mucho!