Hola, quisiera saber porque no me suma.......gracias!
<script>
function calculo(campo){
var totalfinal;
var Total;
gTotal = parseInt( document.getElementById('totalGeneral').value);
pCantidad = document.getElementById(['prd'+campo]).value;
tListado = document.getElementById('listado').value;
pPrecio = parseInt(document.getElementById(['txt'+campo]).value);
subTotal = pCantidad*pPrecio;
document.getElementById(['subto'+campo]).value = subTotal;
valor = document.getElementById(['subto'+campo]).value;
Total = Total + valor;
document.getElementById('totalGeneral').value = Total;
}
</script>