Tagged Questions
10
votes
5answers
269 views
How to handle users typing without input focus
An issue I repeatedly observe with novice web users is that they will occasionally begin typing without first properly selecting (focusing) an input field. A typical pattern I see is this: the user ...
5
votes
3answers
164 views
select from predefined list if exist ,else insert a new item to the list?
What's the best experience to do the following:
The user will insert a new subject(text) only if it isn't in the existing list. So, it will be added to the existing list for all users.
I have ...
1
vote
2answers
209 views
Input checkboxes wrapped inside <labels>
I usually tend to wrap my checkboxes and radio button inside their respective labels and was wondering whether this is considered a good UX practice.
Pros/cons ?
One of my main reasons is that it ...
3
votes
3answers
291 views
Input mask on credit card number & SSN
Our company is discussing the use of an input mask (asterisk) on credit card numbers and social security numbers.
I'm completely against masking the CCN, from a UX perspective, especially since our ...
4
votes
1answer
75 views
Accesibility vs. read only inputs
I have a form with some read only fields depending on the customer role. As a rule, I use read only fields for those inputs.
have you had any problems with this approach using and assistive ...
1
vote
3answers
149 views
Where is the best place to put example input for a form? [duplicate]
Possible Duplicate:
Where should form instructions or hints be placed?
Which of the following is the best place for the example (e.g. 12345) on long/short/busy/simple forms? (...and why?)
...
14
votes
1answer
4k views
Why is it inaccessible to create a form with no submit button?
Considering the W3C advice on including submit controls, is it still possible for a form to be accessible if the only way to submit it is by pressing the return/enter key?
20
votes
3answers
1k views
HTML label association with inputs; bad UX?
I'm a web developer having a weird UX issue. When I build HTML forms, I ensure that every input's label is implemented through a <label></label> tag and that each label uses the for ...
5
votes
2answers
121 views
Should the input field accesskeys in my form be semantic or physically clustered?
I'm creating a form similar to the one below (with <label/> tags, input field accesskeys and logically-ordered tabindices). The form will be filled a handful of times in rapid succession by ...
1
vote
5answers
784 views
Dark labels or light labels
Just wondering what your opinions are on html forms. Is it better to have a light coloured label and a dark coloured value or the other way round, a dark label with a light value?
What are the ...
4
votes
5answers
4k views
How do you design a registration form?
I am trying to learn about registration forms, what should I be careful about when designing one? Is there any "best practice" or do you know any great websites with great examples of registration ...
2
votes
0answers
195 views
Are “reset” buttons redundant? [duplicate]
Possible Duplicate:
Is a cancel button necessary in a web form?
Are form "reset" buttons redundant? If not, why not? Give me a case where they are completey accepted, useful and maybe even ...
9
votes
2answers
1k views
Proper usage of fieldset / legend tags
I'm wondering what the suggested usage of <fieldset>s are on a webpage.
For example, on a simple page with just one form (one set of inputs) is it still recommended to use a fieldset? Or should ...
29
votes
8answers
4k views
Is a cancel button necessary in a web form?
Personally I have never used it. I don't put information in a form and then decide everything needs to be cleared. I would edit one field.
Plus cancel in a UI suggests canceling an action which is in ...