Hola Amigos!!!
estoy con un inconveniente con una funcion que encontre en la web
la funcion es esta   
Código Javascript
:
Ver original- $(document).ready(function(){ 
-    $('input,select').live("keydown", function(e) { 
-         if (e.keyCode == 13 ){ 
-                 var inputs = $(this).parents("html").eq(0).find(":input"); 
-                 var idx = inputs.index(this); 
-                 if (idx == inputs.length - 1) { 
-                         inputs[0].select() 
-                 } else { 
-                         inputs[idx + 1].focus();  
-                         inputs[idx + 1].select(); 
-                 } 
-                 return false; 
-         } 
- }); 
- }) 
mi problema es que , salta al siguiente input o select perfectam ente hasta que se encuentra con un input  hidden y ahi se corta , como podria modificar la fiuncion para que ignore los inpur hidden 
Saludos y muchas gracias!!!!