For this dropdownlist in HTML:
<select id="countries">
<option value="1">Country</option>
</select>
I would like to open the list (the same as left-clicking on it). Is this possible using JavaScript (or more specifically jQuery)?
|
For this dropdownlist in HTML:
I would like to open the list (the same as left-clicking on it). Is this possible using JavaScript (or more specifically jQuery)? |
|||
|
|
You can easily simulate a click on an element, but a click on a Using multiple selects can be problematic. Perhaps you should consider radio buttons inside a container element which you can expand and contract as needed. |
|||
|
|
|
I was trying to find the same thing and got disappointed. I ended up changing the attribute size for the select box so it appears to open
and then when you're finished
|
|||||||
|
|
I've come across the same problem and I have a solution. A function called ExpandSelect() that emulates mouse clicking on "select" element, it does so by creating an another Edit (link was broken). I've created a project at Google Code, go for the code there: 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. |
|||||
|
|
Simple an easy way.
Now you can call your DropDown just like this
Works perfect for me. Maybe better, because you have no problems with the position of the other elemts on the page.
Change the ID to a fix value mybe not smart but i hope you see the idee. |
||||
|
|
|
This is spruced up from the answers just above and uses the length/number of options to conform to how many options there actually are. Hope this helps somebody get the results they need!
|
|||
|
|
|
As has been stated, you can't programmatically open a However, you could write your own I found one for jQuery here. I have no idea whether it would meet your needs, but even if it doesn't completely meet your needs, it should be possible to modify it so it would open as the result of some other action or event. This one actually looks more promising. |
|||
|
|
|
No you can't. You can change the size to make it larger... similar to Dreas idea, but it is the size you need to change.
|
|||
|
|
|
It is not possible for javascript to "click" on an element (u can trigger the attached To view all the items in the list, make the list a
|
||||
|
|
I tried using mrperfect's answer and i had a couple glitches. With a couple small changes, I was able to get it to work for me. I just changed it so that it would only do it once. Once you exit dropdown, it would go back to the regular method of dropdowns.
|
|||
|
|
|
One thing that this doesn't answer is what happens when you click on one of the options in the select list after you have done your size = n and made it absolute positioning. Because the blur event makes it size = 1 and changes it back to how it looks, you should have something like this as well
Also, if you're having issues with the absolute positioned select list showing behind other elements, just put a
or something like that in the style of the select. |
|||
|
|
|
I think the answer to this question (Click through a DIV to underlying elements) is what you're looking for. It worked perfectly for me on mobile safari (iPhone). |
|||
|
|