ojala alguien me pueda ayudar de antemano gracias
Código HTML:
<input type='text' name='aporte[]' id='aporte$i' value='' size='5' /> <script type="text/javascript"> function suma(i) { var sumar = document.getElementById('aporte' + i).value; total += sumar; document.getElementById('totalapagar').value = total; } </script> <input type='text' name='totalapagar' id='totalapagar' value='' size='5' onClick='suma($i);' />