vote up 16 vote down star
16

Related to web pages / application, what is the worst web usability error you have encountered?

The one that hit you the most; that which arguably could trip the most users? Or, from another point of view, which error would you choose to be eliminated from the face of the Earth, if possible?

flag
1  
This should probably be community Wiki. – George Stocker Dec 29 '08 at 22:52

60 Answers

1 2 next
vote up 83 vote down check

The worst one I've encountered is when a page says 'Field X must be entered' and then (because of a postback) it deletes everything I had written in the form. Or similar to that, going back to a page after accidentally navigating away erases all data I had saved in the form.

Very Irritating.

link|flag
show 6 more comments
vote up 45 vote down

The worst web usability error, worst because it's so easy to fix and yet so prevalent, is not using a label element with form elements. The consequence of not using a label element is having to click tiny checkboxes, radio boxes, and input boxes instead of the text label next to them to toggle/select.

link|flag
1  
I don't understand why more people don't use this. It's such an easy thing...aways makes me wondering if it causes a problem somewhere. – Darryl Hein Dec 30 '08 at 1:57
13  
I seriously think there's a large number of programmers who simply aren't aware of the functionality. – Kibbee Dec 30 '08 at 19:23
show 4 more comments
vote up 32 vote down
  1. Click-through pages
  2. Background music (which of the 25 tabs I have open is creating that noise!)
  3. Most instances Flash (apart from video)
  4. You need to "register" to perform even the simplest task
  5. Most "call to action" images
  6. 10pt or smaller font-size
  7. 3rd party analytics code/adverts that take an age to download
  8. Using red and green alone to distinguish between things (leaving most colorblind users cold)
  9. Using images that infer more meaning than they actually should
  10. Overly complicated forms with a hundred fields and drop downs
  11. Useful links pages (so 1997)
  12. Unexpected postbacks
  13. Most instances of opening a new browser window
  14. Checkboxes where its not obvious whether a check is a positive or a negative indication

...and the biggest usability error of all, that most sites are guilty of, is presenting WAY too much information on each page.

link|flag
show 2 more comments
vote up 16 vote down

Qwest's main login form "checks" the password to make sure it's "valid" without actually submitting the form to the server. Before it allows the form to be submitted, it makes sure the username and password fields consist of the "allowed" set of characters. Once those checks pass, the form is submitted to the server, where the username and password are really checked.

The problem is that the client-side script that checks the password doesn't have the correct password rules. The script thinks certain characters are disallowed when they're really perfectly fine.

I know certain characters are perfectly fine because my password includes some of them! The initial signup pages didn't check password validity, so I had no idea that the password I chose would later bring me this trouble. Thus, Qwest rejects my login without any network traffic at all. And customer support isn't helpful, either, because customer support isn't set up for accepting bug reports from people who actually know what they're talking about.

There's another login form elsewhere on the site that doesn't use the script, but it always takes me a while to find it. Instead, I've taken to using FireBug to set a breakpoint after it's checked my password, and then toggle the flag to let it consider my password as valid.

link|flag
2  
+1 for your ingenuity with FireBug. Also for the fact that you don't use IE. – Justice Dec 29 '08 at 23:52
3  
Why do passwords have 'disallowed' characters anyway? Aren't they being hashed before storage? – Charlie Somerville Jul 8 at 4:42
1  
@Charlie Somerville: Hopefully... – nilamo Jul 8 at 5:12
show 2 more comments
vote up 16 vote down

For the love of all that is holy, I cannot stand sites that cannot intuitively handle dates. Many travel sites will balk if you only enter "mm/dd" instead of just making a reasonable assumption about the year. Likewise, some sites insist that you must enter leading zeroes, or force you to use individual dropdowns to build a date.

link|flag
show 1 more comment
vote up 16 vote down

Telephone number fields that are too stupid to filter non-numeric characters, instead insisting on the One True Way to express a phone number.

That is, user enters phone number 512-555-1212, or 5125551212. The page pops up an error alert "PHONE NUMBER MUST BE ENTERED AS (NNN) NNN-NNNN".

You'd think any programmer worth at least minimum wage could do better!

link|flag
4  
Amen to this. Same thing for credit card numbers. I'm going to trust some site to take money out of my bank account, when it's baffled by hyphens? – fenomas Dec 30 '08 at 18:03
6  
And what if I live in some other country where the phone number format is (xx) xxxx-xxxx – Ken Ray Dec 30 '08 at 18:48
show 3 more comments
vote up 11 vote down

I wouldn't call this the worst, but it has the potential to be up there.

You can find this "error" on Gmail and many other sites right now including stackoverflow in this very field.

Scenario: You have a rich text editor that has most of the features of MS word. Ctrl-B makes it bold, Ctrl-I italics, etc. etc.

But what happens when you hit "tab"? You don't indent. You leave the text field and almost always land on the the submit button. So if you ever hit tab, expecting to indent and then maybe enter to add some vertical space (or you thumb hits the space bar), you just submitted the form!

I know it's rare, and it is technically the expected default behavior. Tab leaves a form input. Enter (or space) on a submit button submits.

However, there must be a better model now that we insist that are text areas behave in every other way like a text editor.

Otherwise, you may accidentally embarrass yourself in writing a quick email. Ask me how I know. ;)

Possible solutions: change the default tab order or confirm a submit on an immediate tab-space or tab-enter.

link|flag
1  
there is a way to intercept a TAB key press: stackoverflow.com/questions/394959/… – Andy Nov 1 at 16:41
show 2 more comments
vote up 9 vote down
  1. Javascript sites that don't work with firefox.

  2. Form boxes for phone numbers or SSN's which automatically take you to the next box. For example, when the phone number is split into 3, 3, and 4. And it's almost impossible to go back to a previous box.

link|flag
7  
Yes, number 2 is the most annoying. Especially the part about not being able to go back because the developer was a bonehead and now that the box is "full" automagically tabs you to the next field. – Robert C. Barth Dec 29 '08 at 23:13
5  
2 is really annoying for people who use the tab key to navigate. If you use the mouse it's no big deal - you're just re-selecting the same box. But if you tab, you end up skipping a box. Not fun. – Branan Dec 29 '08 at 23:43
3  
In most browsers, you can use SHIFT-TAB to move back to the previous item in a form. – Adam Bellaire Dec 30 '08 at 1:07
show 2 more comments
vote up 9 vote down

I absolutely hate sites that only allow for navigation triggered by hover effects. Obviously it breaks accessibility guidelines, but it also renders such a site unusable via touch-screen devices like the iPhone where hovering isn't an option.

link|flag
show 2 more comments
vote up 9 vote down

(1) Automatically-initiated audio.
(2) Some idiot javascript jockey who thinks he knows what constitutes a valid email address preventing me from using my actual email address to fill-out a web form.
(3) Registration required to use the site.

link|flag
show 1 more comment
vote up 9 vote down

Not accepting correct email addresses. This is especially notorious with '+' in the address. Commercial sites have lost my business because of that.

link|flag
vote up 7 vote down

one of the biggest fail:

target="_blank"

You shouldn't choose for user.. On my personal blog i open ALL links (no matter if is insite or external) in the same window. If an user wants new window, just ctrl click/middle click on a link. Pretty simple, heh? Is very annoying (at leas for me, dunno for you) to enter on a site and links just open in new window/tab.

link|flag
3  
That is one side of a particularly two-sided coin. – jTresidder Jan 3 at 14:13
show 7 more comments
vote up 6 vote down

I will say the most annoying one would be how Flash must be on top of everything, and a couple of pages i need to use have flash ads on the top header that something wont allow me to click on submenus(they appear with javascript but even with z-index:10000) its still under the flash ads

link|flag
show 4 more comments
vote up 6 vote down

www.lulu.com

Buy a book, e.g. Delphi 2009 Handbook by Marco Cantu for $48.50.

Add to cart. Price it says is $48.50.

Once you're at checkout and you see it adds $74.26 (!!!!????) for "Standard" shipping to Canada plus $6.14 tax totalling $128.90, are you going to continue your purchase or search around like mad to find out what the h-ll is going on. But finally, if you're persistent, you find the ground shipping at $16.43 which takes a whole 2 days longer than Standard.

I can't imagine the number of sales they must lose by not providing the cheapest shipping option in front of you right away, waiting until checkout to inform you of the shipping, and getting you mad before you find the cheaper (but still not cheap enough) shipping options. This is so horrible, I left their site with the view that I'll never publish anything myself with them.

So what can be a worse usability blunder than one that costs you customers?

link|flag
vote up 5 vote down

Interstitial ads actually getting between me and the content I came there to see. Usability error, because I instantly stop using the site and go elsewhere.

link|flag
vote up 5 vote down

By far, sites that don't correctly deal with back/forward buttons. Some totally ignore them, others just freak out and put the session into a broken state.

link|flag
vote up 5 vote down

Splash pages. If I choose to load a webpage isn't it obvious that I actually want to enter?

link|flag
1  
Totally agree. If you enter somesite.com and it shows you the prompt "click here to enter"... WTF? enter? Am I outside? – Petruza Jul 29 at 0:56
vote up 5 vote down

Forcing users to 'page' to continue reading articles when there is absolutely no need for it. Ex: News articles / blogs blatantly seeking to increase their page hit count.

Also binding a website to a proprietary format. Ex: Netflix will not play videos on an operating system running Linux since it uses Silverlight and even tho there are Silverlight plugins for Firefox, they won't run on Firefox w/ Linux.

link|flag
vote up 5 vote down

The worst of the worst

  • very badly designed forms (e.g. credit card number without spaces or dashes, poor feedback on errors, etc.),
  • "web pages" with flash animations instead of real content,
  • still existing framesets and silly welcome pages,
  • underlined text which is not link,
  • enforced desktop metaphor,
  • unreadable text (10px and co.),

and the list goes on. Maybe I should add missing functionality without JavaScript, but I don't want to start the flamewar again. These are just making webpages irritating to use.

edit: I forgot to mention the infinitely long dropdown lists (e.g. selecting your year and month of birth on some pages)

link|flag
show 6 more comments
vote up 4 vote down

To me the biggest usability issue is intrusive sound. I immediately leave any website that generates, either directly or by my accidental passing of the mouse, any forms of sound, especially if via video playback. This includes ads, of course, but is common also in websites like ESPN. If I am logging on to see the headlines and my connection is slow, I don't want an automatically-starting video with this week's action.

A second usability issue for me is a news article in a website that is essentially focused on video and has very little text. Either give me a transcript of what is in the video, or keep it to youtube.

Also, not directly a usability issue, but I think that the fast machines that most flash developers use leads them to not realize the impact that it carries on older machines and architecture. My laptop, for example, is a MacBook G4, and crals to a stop if there is more tha none flash applet running in the page. I can kill it with myspace, for example.

link|flag
vote up 4 vote down

Choose to eliminate: Abuse of Flash. Trying to read a page while in the periphery garish animations are competing for your attention. Quickly drives me away from the page without reading what I came for, if I have that option, otherwise I'll waste some seconds trying to turn it off/zoom in so it's no longer visible.

link|flag
show 1 more comment
vote up 4 vote down

Sites that resize your browser

Jeez I hate this one, especially now in the age of tabbed browsing, drives me nuts.

link|flag
show 1 more comment
vote up 3 vote down

Drop down lists/other controls that do auto post backs saving the page's form contents to the database without warning.

link|flag
vote up 3 vote down

Non-sequential or non-logical tabindexes ticks me off.

link|flag
vote up 3 vote down

Replacing the real life with the web.

Bear with me for a minute. When I wanted to travel to Mongolia, I needed to get a visa. I looked up the address of the Mongolian embassy on their website (which only commits a few of the atrocities described here) and went there the next day. The building was somewhat hard to find and it was an extremely hot day, so I was already slightly annoyed by the time I got there. After waiting for a while, the clerk asked me if I had a certain printout with a barcode with me. I hadn't and told him I actually came to get all the paperwork from the embassy.

He informed me, that one can't apply for a visa at the embassy. The application has to be filled out online and printed on one's own printer (pray to god you have one), because some central server needs to spit out a barcode for you, something that apparently can't be done at the embassy.

But it gets worse: Trying to fill out the online form (which is on a completely different, even worse site and wasn't linked to from the official embassy site at that time) you'll come across most of the other atrocities listed here. After filling out the 49 field form I noticed I couldn't submit it, apparently because some craptacular Javascript didn't work in anything but IE and wouldn't set the everything-a-okay flag.

If this would've been an online shop I'd've been long gone by then, but as it were I had to boot up Parallels and fill out the entire form a second time.

My worst online+offline experience ever. It seems they improved it slightly by now, but I think you still can't travel to Mongolia if you have no internet access and/or no printer.

link|flag
show 1 more comment
vote up 2 vote down

Web forms with multiple fields that automatically set the focus to one of the fields.

link|flag
1  
Really? I prefer this, at least upon the initial load. – Robert C. Barth Dec 29 '08 at 23:12
show 4 more comments
vote up 2 vote down

Choose to eliminate: Wondering why a page is taking so long to load, only to find out it's to play some unwanted and irrelevant music. It's especially annoying if it's a page you'll have to come back to for a link to some other content, I'll just go elsewhere.

link|flag
vote up 2 vote down

Long web forms, when you fill them out, your session has expired and the data is gone. You have to start over.

This must be one of the most frustrating things ever. I rarely will fill the form out again.

link|flag
vote up 2 vote down

Not just on the web, but forms with mandatory fields that you cannot fill in either because you don't know and can't get the answer, or because the little list of options doesn't include the true answer, followed by a declaration that you're telling the truth.

(eg. I must fill in my drivers license or social security number - I don't have either)

link|flag
1  
Yes. Also, forcing you to provide information you do not want to give (such as phone number). It's pointless anyway; if they insist on a phone no, I'll just make one up... – sleske Jul 29 at 0:51
vote up 1 vote down
  • Postbacks
  • Crappy Javascript that shows error messages when doing anything
  • Creating important popup windows when the page loads (= blocked by any popup blocker)
  • Validating addresses in US format, making it impossible to enter perfectly valid addresses from other countries.
link|flag
1 2 next

Your Answer

Get an OpenID
or

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