Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/11/2015, 12:03
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 652
Antigüedad: 19 años, 5 meses
Puntos: 6
Respuesta: llenar texto cuando se escribe

encontre esto pero son solo para dos textos es posible un tercer campo de texto?

Código HTML:
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>
	$(document).ready(function () {
    $("#input1").keyup(function () {
        var value = $(this).val();
        $("#input2").val(value);
    });
});
</script>

<input type="text" id="input1" />
<input type="text" id="input2" />
<input type="text" id="input3" />