up vote 36 down vote favorite
23
share [g+] share [fb]

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?

link|improve this question
3  
This should probably be community Wiki. – George Stocker Dec 29 '08 at 22:52
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 20 '11 at 2:06

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

67 Answers

1 2 3
up vote 123 down vote accepted

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|improve this answer
show 6 more comments
feedback

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|improve this answer
2  
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
1  
Also, its a recommendation with the WCAG Accessibility guidelines - so definitely worth that extra minute or two ensuring your application uses them well. – Amadiere Dec 30 '08 at 16:48
32  
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 5 more comments
feedback
  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|improve this answer
2  
The links page is not a web usability problem. I agree with the rest thouhg. – the_drow Jul 8 '09 at 5:36
show 3 more comments
feedback

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|improve this answer
8  
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
2  
jQuery.maskedInput is a godsend for this sort of thing. – Adam Lassek Dec 30 '08 at 18:18
8  
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
1  
Jim In Texas, While of course it's easy to solve phone number formats for a single phone system, as Ken Ray begins to point out, it becomes a much more complex task when you want to accept phone numbers from around the world. At a certain point, you must either accept that some phone numbers may be invalid, or impose some arbitrary limits. Even if you cross-reference country and phone numbering systems, you run the risk of rejecting submissions from people who use cell phones from out of country. It's ultimately not something that can be done right by many of even the best programmers. – eyelidlessness Jul 8 '09 at 5:09
1  
@Kyralessa, it's terrible if you plan to do more with the data than store it. – eyelidlessness Apr 12 '10 at 20:46
show 3 more comments
feedback

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|improve this answer
7  
+1 for your ingenuity with FireBug. Also for the fact that you don't use IE. – yfeldblum Dec 29 '08 at 23:52
15  
Why do passwords have 'disallowed' characters anyway? Aren't they being hashed before storage? – Charlie Somerville Jul 8 '09 at 4:42
3  
@Charlie Somerville: Hopefully... – nilamo Jul 8 '09 at 5:12
show 2 more comments
feedback

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|improve this answer
1  
Another place where localisation issues can crop up, of course. – Rob Apr 5 '10 at 15:23
show 1 more comment
feedback

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

link|improve this answer
1  
I once gave my electric company an e-mail address with a '+' in it for paperless billing. Their form took the address, but their billing software apparently couldn't handle it. I never recieved a bill, and forgot about it (it was my first apartment, paying bills wasn't routine yet). 6 months later I got a rude surprise when they snail-mailed a threat to cut off my electricity if I didn't pay my bill! – Jon Quarfoth Apr 10 '10 at 1:31
2  
I just got this the other day. A site told me my e-mail address was already in use. When I asked it to send my password (or reset, whatever), it said there was no such user. So I tried using myemail+thesitename@gmail.com, and it said the e-mail address was invalid. IDIOTS. – Kyralessa Apr 11 '10 at 23:31
1  
+1 I have an email address with multiple underscores before the @, and some things (including the Australian Government's payroll system) choke on it... – David Johnstone Apr 12 '10 at 0:54
feedback

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|improve this answer
1  
there is a way to intercept a TAB key press: stackoverflow.com/questions/394959/… – Andy Nov 1 '09 at 16:41
6  
I'd imagine intercepting tab to be a problem for keyboard-only navigators, if they get trapped in the textbox and can never escape. – Damien_The_Unbeliever Dec 8 '09 at 15:26
show 2 more comments
feedback

(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|improve this answer
2  
+1 for the third item – finnw Feb 1 '10 at 9:20
show 2 more comments
feedback

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

link|improve this answer
6  
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 '09 at 0:56
show 2 more comments
feedback

Sites that resize your browser

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

link|improve this answer
2  
You easily can (and should) disable this in Firefox. – tj111 Oct 8 '09 at 18:07
show 2 more comments
feedback
  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|improve this answer
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
6  
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
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
8  
That is one side of a particularly two-sided coin. – jTresidder Jan 3 '09 at 14:13
1  
+1. I want to decide myself whether I want your link open in a new window, a new tab or the same tab, thanks. – Roberto Bonvallet Jul 28 '09 at 14:59
show 6 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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 than one flash applet running in the page. I can kill it with myspace, for example.

link|improve this answer
2  
The worst thing, of course, is when you've got several tabs open and are suddenly confronted with random noise. You spend two or three minutes hunting down the culprit, and then you realise it's a goddamn Flash ad on some other sodding page, and... – Rob Apr 5 '10 at 15:29
show 1 more comment
feedback

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|improve this answer
show 4 more comments
feedback

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|improve this answer
feedback

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|improve this answer
1  
...or no Windows license. – nbv4 Jul 10 '09 at 10:20
2  
I think this could be better handled by keeping the functionality on the Web and merely having the brick & mortar folks trained to use the Web to work with customers who are unable to do so. Telling a customer to go home and complete a Web form is poor customer service - not a sign of bad IT. :) – Mayo Dec 8 '09 at 15:51
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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

link|improve this answer
feedback

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

link|improve this answer
1  
Especially with user/password forms, causing you to suddenly type your password in a normal text input field, for everyone to see. – Alec Aug 26 '10 at 23:44
feedback

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|improve this answer
show 6 more comments
feedback

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

link|improve this answer
1  
Really? I prefer this, at least upon the initial load. – Robert C. Barth Dec 29 '08 at 23:12
3  
It is very annoying when you start typing before the page ends loading and suddenly the script kicks in and moves you to another field while you are still typing. – Sergio Acosta Dec 29 '08 at 23:38
3  
My home banking site used to do this annoying thing. I always ended up typing my password ( which is also the ATM code ) in the username field for everyone to see – Petruza Jul 29 '09 at 0:59
1  
I hate this because it breaks the navigation. When you use your keyboard to navigate, you press backspace to go back. But whenever a site focusses on an input field, this obviously doesn't work anymore. Another example of taking away a users choice on how to surf the web. – Alec Aug 26 '10 at 23:43
show 4 more comments
feedback

Unless someone can give me a good reason why some sites do this ... I hate when I am not allowed to provide an email address with my username in it ... I am unable to use my email address with ebay because its nippysaurus@whatever

link|improve this answer
feedback

There's nothing I hate more than web forms that automatically tab based on the length of characters in the box. So if I'm typing in a phone number and I get a digit wrong, I click the box to fix the number. Except that the form forces my cursor to the next box.

And why ask for a phone number at all? This is the web. Don't call me, I'll call you.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback
1 2 3

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