vote up 4 vote down star
8

Usability is extremely important, and yet there are so many products that violate a lot of rules. There are several questions on StackOverflow that are about usability (see: link1, link2, link3), however what I feel is missing still is a comprehensive list of usability "tactics": concrete examples of what (not) to do for a web application.

Please don't add references to books. Please list one example per answer so that we can use the voting to actually prioritize the list.

flag
asking for specific answers to a non-specific question doesn't make the question specific. go read the faq again. – hop Oct 30 '08 at 12:36

14 Answers

vote up 8 vote down

Show, Don't Tell

Whenever possible, meaningful visual cues (when appropriate to the audience) should be chosen instead of lengthy textual descriptions.

link|flag
Less text is more indeed! – Jilles Oct 30 '08 at 12:05
Dont't Make Me Read, also the title of an excellent web design book. – DOK Oct 30 '08 at 12:13
@DOK - I think that's "Don't Make Me Think!" – Ben Scheirman Oct 30 '08 at 13:22
vote up 7 vote down

When a user is in a certain flow, make sure the primary call to action is a button and any optional secondary actions are presented like a link, as in:

alt text

Don't present them both as buttons. (For more background, see this)

link|flag
What happened to buttons staying on the same page (or appearing to) and links taking you to another page? – DOK Oct 30 '08 at 12:12
I disagree with this. Well, I disagree with the second visual distinction more than the first. – Thomas Owens Oct 30 '08 at 13:05
vote up 5 vote down

Be Consistent: There should be a convention accross all pages / dialogs / screens that maintains the users expectations when using a control or performing an action. This could be the caption on buttons, the position of elements or the steps required to perform certain actions.

link|flag
vote up 4 vote down

Don't hide functionality in a dropdown (users can not explore the possibilities your application offers)

link|flag
I abhor dropdownlists & avoid them wherever possible. But my reasoning is a bit different from yours. I find it physically difficult to roll the mouse down a long list and select the right item. Invariably, I get down around the M's and roll my mouse off the list and have to start all over again. – DOK Oct 30 '08 at 13:11
Yes, I know I can type the first letter of my selection, but what if I need more letters? I know to type "N" to get somewhere near North Carolina, but then it's usually six more rows down or so. – DOK Oct 30 '08 at 13:12
Exactly, plus... it does little for the user to discover the functionality (I have seen that happen too, where people hide functionality instead of a list of options in a dropdown) – Jilles Oct 30 '08 at 17:57
Same goes for hierarchical menu structures. – le dorfier Nov 8 '08 at 4:56
@DOK, you should be able to start typing the word you want and it will search for it, you do have to be fairly quick at it though. At least it works with Firefox. @doofledorfer, I think it fits more under don't use things wrong. I find hierarchy to be great if the site can be laid out that way. – he_the_great Nov 8 '08 at 5:33
vote up 4 vote down

Use Standard Controls: Don't create new controls unless there is a clear reason to do so. Users are used to the standard controls and know how to use them.

link|flag
vote up 4 vote down

Do REST-like links, so user can easilly bookmark or copy-paste your site. This is often forgotten in todays AJAX-times.

link|flag
vote up 3 vote down

Make good use of whitespace. It helps to make things much more clear than just having everything crammed in competing for attention.

link|flag
vote up 2 vote down

I wish more sites would make better use of tooltips (i.e., the TITLE tag on links, images etc.)

In these days of AJAX applications it's not always clear what is going to happen when you click on a link - a brief description would help!

link|flag
I guess this is changing over the last years: it used to be you'd be carried off to page confirming your action, and now (with AJAX) it might happen with just that one click. I guess it would be a good thing to make that consistent across your webapp. – Jilles Oct 30 '08 at 12:23
vote up 2 vote down

If a button does one thing on one screen, and the same button appears on another screen, it better perform the same action as it did on the previous screen.

link|flag
Should that button appear in the same area as well, then? – Jilles Oct 30 '08 at 13:36
vote up 2 vote down

I've always been partial to the Principle of Least Astonishment, which stipulates that the best user interface is the one that minimizes any surprises to the user.

In other words, make it do what the user expects it to do!

Corollary: Users don't read manuals. Or help text. Heck, users don't read!

link|flag
Touche -- how true! – Adam Liss Nov 8 '08 at 5:03
vote up 1 vote down

Use affordances to make controls understandable. Avoid confusion between emblems, banners, and buttons.

link|flag
vote up 1 vote down

Use a statistics package to monitor traffic through your site.

Which pages pique user interest? Which pages make users leave? Adjust your site accordingly.

link|flag
Are there any specific things you'd monitor? And how do you cope with the fact that you're measuring what is happening in your webapp, not what it could be? (E.g. is a 50% bounce rate on a particular page bad? What do you need to change to improve that?) – Jilles Oct 30 '08 at 12:25
I would monitor people who looked at X also looked at Y and Z, people spent a lot of time on pages with a certain tag (either raw views or a count of the time spent), etc. – Thomas Owens Oct 30 '08 at 13:06
vote up 1 vote down

Don't reinvent the wheel - use tried an tested user models so the user elements behave as the user expects.

link|flag
So what are these "tried and tested user models"? Let's list them here! – Jilles Oct 30 '08 at 12:26
vote up -1 vote down

Study up on User Stories, and treat them like a Holy Grail. Then get user feedback to improve them, and to learn what you can change. Pay special attention to what you can remove. Then pay next attention to what you can simplify. Consider all options before adding anything.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.