How do you interact with forms?
I got into a debate at the office about the differences between the default and the expected operation of form elements. I'm curious about other opinions on the subject.Examples>> w/ questions.
- You encounter a text field and a submit button which is part (or whole) of a form. The default behavior for the form in standard, vanilla HTML is that you type in the text field, and click the button to submit. Other default behavior here is that you can type into the field and press enter, and the form will submit.
a. Which do you do more often, Click or Enter to submit? Do you expect the form to work both ways?
- If you have a stand-alone select box (sometimes called drop-down lists), do you expect it to operate like a "jump-menu," utilizing Javascript to submit the form when you change the menu? Does it depend on the context? (i.e. if it appears in a navigational area on a page.)
a. Which behavior do you prefer - the one using onchange, or not? - If a select box has a submit button next to it, and you alter its state (by choosing an option) do you expect to be able to hit enter and have it submit the form?
- If you encounter a field set within a larger form collecting a telephone number in a segmented format, meaning that there are 3 short fields for the different "parts" of the number, do you expect that the form will use Javascript to advance you from field to field?
a. I know most heavy web users have tripped on forms that have and haven't implemented this "feature". Is there a way to indicate to users, "keep typing"?
What do you think?

0 Comments:
Post a Comment
<< Home