Curious, when one defines an input form with max characters of say 3, and the user enters 3 characters, how can I have the cursor automatically skip to the next tab?

Most forms I have ever seen requires the user to manually tab to the next field, even when the field has been filled out (to max/required) number of characters.

I know this is a php forum, but all I use is php with html, and don't know of an html form to check out.

Regards

    I am somewhat anit-java script. I am hoping to have a java free website when I am done with this project(my first using php).

    Is there no way to accomplish this with html?

      No. It's a client side action. There has to be some sort of language to perform the action. HTML is just the markup language. It can't perform actions like that. And since you're performing a client side action, you need a client side language to do it. Hance, javascript/DHTML is the viable solutions.

        I appreciate what you had to say. I sort of realized that a non-php script would be required. But it never hurts to ask.

          Write a Reply...