Search code examples
javascriptjqueryjquery-eventsusability

Moving a focus when the input text field reaches a max length


I do have a credit card number form. The number is divided into four parts just as on a real credit card.

I want to add a JavaScript taste to the form where when a user types four letters in a field, the focus automatically goes to the next tag. But not in the last tag. By doing this, a user doesn't have to type "tab" key to move a focus.

It is okay to add some extra class, id or name in the tags.

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>MoveFocus</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" charset="utf-8">
     $(function() {
     // some code goes here.
    });
    </script>
</head>


<body>
  <form action="post.php" method="post" accept-charset="utf-8">
    <input type="text" value="" id="first" size="4" maxlength="4"/> -
    <input type="text" value="" id="second" size="4" maxlength="4"/> -
    <input type="text" value="" id="third" size="4" maxlength="4"/> -
    <input type="text" value="" id="fourth" size="4" maxlength="4"/>
    <p><input type="submit" value="Send Credit Card"></p>
  </form>
</body>
</html>

Solution

  • I haven't used this tool before, but it does what you want. You could just look at it's source to get some ideas:

    This Plugin on GitHub

    For your situation, you would add this code:

    <script type="text/javascript" src="jquery.autotab.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
        $('#first').autotab({ target: '#second', format: 'numeric' });
        $('#second').autotab({ target: '#third', format: 'numeric', previous: '#first' });
        $('#third').autotab({ previous: '#second', format: 'numeric' });
    });
    </script>