Like davorg said, UI behaviour is up to the browser. For this reason, I don't like to trust browsers to do what I tell them. For instance, I never make javascript support a requirement for site usability, because some browsers won't support it and there are a few different JS implementations.

Along the same lines, I don't like to use multiple-select form elements. Different browser implementations may screw around with the way the multiple-select gets rendered and behaves, and I also don't like having to include a line like "control-click (or command-click, for Mac) in the list to select multiple options" so people know it's a multiple-select... I find it a headache, sometimes.

So instead I prefer to use checkboxes. The check box has standard behaviour, everyone knows how to use it, and so on. Also, the user doesn't have to scroll through a list to make sure he's selected every necessary option. Of course, when the list of options is too large you pretty much have to use multiple-selects (try cramming 100 checkboxes onto a page and see how your layout looks).


LAI
:eof

In reply to Re: multi-select html forms by LAI
in thread multi-select html forms by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.