Tengo una duda no tengo mucho conocimiento de javascript y lo que quiero hacer seguro me pueden ayudar.
Cambiar solo visual la cantidad de un input mediante un input, funciona bien pero solo agarra el primero, quisiera que de alguna forma no importa la cantidad de los input siempre se multiplique en todas.
De ante mano muchas gracias
Código HTML:
<html> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <script language="javascript"> function fAgrega() { document.getElementById("Text2").value = document.getElementById("Text1").value*6; } </script> <body> <input id="Text1" type="text" onkeyup="fAgrega();" /> <input id="Text1" type="text" onkeyup="fAgrega();" /> <input id="Text1" type="text" onkeyup="fAgrega();" /> <input id="Text1" type="text" onkeyup="fAgrega();" /> <input id="Text1" type="text" onkeyup="fAgrega();" /> <br /> <br /> <input id="Text2" type="text" disabled /> <input id="Text2" type="text" disabled /> <input id="Text2" type="text" disabled /> <input id="Text2" type="text" disabled /> <input id="Text2" type="text" disabled /> </body> </html>