How To Navigate through Enter key

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Navas km
    New Member
    • Sep 2013
    • 4

    How To Navigate through Enter key

    Code:
    <script type="text/javascript">
            $(document).ready(function () {
    
                var inputs = $(':input,select').keypress(function (e) {
                    if (e.which == 13) {
                        e.preventDefault();
                        var nextInput = inputs.get(inputs.index(this) + 1);
                        if (nextInput) {
                         nextInput.focus();
                         
    
                        }
    
                    }
                });
    
            });
     </script>
    // this js shows an error when it focus on dropdown box//
    Last edited by Rabbit; Sep 27 '13, 03:56 PM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.
Working...