Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/11/2011, 08:20
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 5 meses
Puntos: 43
Respuesta: Metodo not() no me funciona

Código Javascript:
Ver original
  1. <html>
  2.     <head>
  3.         <title>Pruebas</title>
  4.         <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" type="text/css" media="all" />
  5.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
  6.     <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
  7.     <script>
  8.     $( function(){     
  9.         var availableTags = ["ActionScript","AppleScript","Asp","BASIC","C","C++","Clojure"];
  10.         $(".busqueda" ).autocomplete({
  11.             source: availableTags
  12.         });
  13.        var inputs = $(":text, :file, :button, textarea", '#formulario');
  14.        inputs.live('keydown', function(e) {
  15.            if($(this).is(".ui-autocomplete-input")) return true;
  16.            else{
  17.                 if (e.keyCode == 40 ){
  18.                     var $this = $(this);
  19.      
  20.                     if($this.index() == inputs.length - 1)
  21.                         inputs.eq(0).focus();
  22.                     else
  23.                         saltear($this.next()).focus();
  24.      
  25.                     return false;
  26.                 }
  27.             }
  28.        });
  29.  
  30.        function saltear(el){
  31.             if(el.is('.busqueda, :disabled')){
  32.                 return saltear(el.next());
  33.             }
  34.             return el;
  35.        }
  36.  
  37.     });
  38. </script>
  39. </head>
  40. <body>
  41.     <form id="formulario">
  42.         <input type="text" />
  43.         <input type="text" />
  44.         <input type="text" disabled="disabled" value="disabled" />
  45.         <input type="text" class="busqueda" value="Autocompletar" />
  46.         <textarea>textarea</textarea>
  47.         <input type="file" />
  48.         <input type="button" value="boton" />
  49.     </form>
  50. </body>
  51. </html>