Tengo la siguiente pregunta:
Como hago para pasar lo que escribo en un campo de texto 1 a otro campo de texto 2, si en el campo uno (1) escribo "Hola" el campo de texto 2 me reciba ese mismo valor.
Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <label> <input type="text" name="1" id="1" /> </label> <label> <input type="text" name="2" id="2" /> </label> </form> </body> </html>
Gracias.