How can you programmatically tell an HTML select to drop down (for example, due to mouseover)?
|
|
||||
|
You can't do this with a HTML select tag, but you can do it with JavaScript and HTML. There are variety of existing controls that do this - for instance, the "suggest" list attached to the SO "interesting/ignored tag" entry, or Gmail's lookup for email adresses. There are many JavaScript+HTML controls that provide this capability--look for autocomplete controls for ideas. See this link for one control... http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx |
||||
|
|
|
This is actually possible with HTML+Javascript, despite everywhere else people say it is not. However, this only works on Chrome. Read more if you're intersted. According to W3C Working Draft for HTML5, Section 3.2.5.1.7. Interactive Content:
That said, demo time. Here is a working Fiddle. HTML:
Javascript:
If anyone finds a way to do the same but not in Chrome, please feel free to modify this fiddle. |
|||||
|
|
This is the closest I could get, change the size of the element onmouseover, and restore the size onmouseout:
|
|||||
|
|
I may be wrong, but I don't believe that is possible with the default select box. You could do something with JS & CSS that achieves the desired result, but not (to my knowledge) the vanilla SELECT. |
|||
|
|
|
Here's the best way found. NOTE It only works with IE on Windows and your web would probably need to be in a secure zone - because we access the shell. The trick is that ALT-Down Arrow is a shortcut key to open a select drop down.
|
|||
|
Have a look at ExpandSelect() function that emulates mouse clicking on the select element, it does so by creating a new absolute positioned The code is now hosted at google code, ExpandSelect.js is only 4 KB and works across all major browsers (IE, Chrome, Firefox, Opera), see the screenshots and download it here: http://code.google.com/p/expandselect/ ScreenshotsThere is a little difference in GUI when emulating click, but it does not really matter, see it for yourself: When mouse clicking:
When emulating click:
More screenshots on project's website, link above. |
||||
|
|
|
This is not exactly what you asked for, but I like this solution for its simplicity. In most cases where I am wanting to initiate a dropdown, it is because I'm validating that the user has actually made a selection. I change the size of the dropdown and focus it, which nicely highlights what they've skipped:
|
|||
|
|



<select>, as people expect it to behave a certain way and you'll be preventing people on other platforms (like mobile) from using your site. – Brian Donovan Dec 26 '10 at 23:47