Quisiera que los valores vayan cambiando en tiempo real y hasta el momento he probado con onkeyup y ha funcionado pero lo que no logro es hacer lo que pido arriba, ya que lo que si he logrado es multiplicar todos los campos cantidad y precio y ponerla en resultado final... y no en su total...
les pido mucho su ayuda... gracias desde ya.
Aquí tengo el código para añadir campos...
Código HTML:
Ver original
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="style.css" rel="stylesheet" type="text/css" /> <!-- inserta filas de campos en detalle --> <script type="text/javascript"> emails=0; function agregar() { emails=emails+1; $("#campos").append('<li class="email'+emails+'"><label>cantidad</label><input type="text" name="cantidad[]" size="6" value="0" onkeyup="sumar(this);"/><label>precio</label><input type="text" name="precio[]" size="8" value="0" onkeyup="sumar(this);" /><label>total</label><input type="text" name="total[]" size="8" /> </li>'); } </script> <!-- fin inserta filas --> </head> <body> <form name="frm_multiple" method="post" action="procesar.php"> <!-- FACTURA --> <!-- DESTALLE --> <ul id="emails"> </li> </ul> </form> </body> </html>