Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/10/2011, 13:35
Avatar de jmanuelprince
jmanuelprince
 
Fecha de Ingreso: octubre-2011
Mensajes: 11
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Tomar value de INPUT y setar en otro INPUT

No amigo alguna otra cosa estoy haciendo mal porque a pesar de que agregue el JQuery, y despues el jquery-latest igualmente no me funciona aquí te adjunto como lo probé

Código:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js">

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

</head>
<body>
  <input type="text" id="texto1" value=""/><br>
 <input type="text" id="texto2" value=""/>
</body>
</html>