Ver Mensaje Individual
  #13 (permalink)  
Antiguo 25/09/2012, 17:35
Avatar de huertas87
huertas87
 
Fecha de Ingreso: marzo-2012
Ubicación: Bogotá
Mensajes: 70
Antigüedad: 13 años
Puntos: 2
Respuesta: Saltar al siguiente campo de texto

Jejejeje... mentiras ya lo hice funcionar.

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2. $('#input_1').keyup(function(){
  3.                            
  4.     if($(this).val().length > 7)
  5.         {
  6.             //alert('Funciona!!')
  7.             $('#input_2').focus();
  8.         }
  9. });
  10. });


Gracias 'Dradi7' y 'maycolalvarez' por su ayuda.