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)?
|
1
|
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. |
||
|
|
|
|
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
|
|||
|
|
|
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.
|
||
|
|