Código Javascript
:
Ver original- $('input[type=text],select').live("keydown", function(e) { 
-                 if (e.keyCode == 13 ){ 
-                         var inputs = $(this).parents("html").eq(0).find("input[type=text],select"); 
-                         var idx = inputs.index(this); 
-                         if (idx == inputs.length - 1) { 
-                                 inputs[0].select() 
-                         } else { 
-                                 inputs[idx + 1].focus();  
-                                 inputs[idx + 1].select(); 
-                         } 
-                         return false; 
-                 } 
-         });