Linked Questions
85 questions linked to/from How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)?
174 votes
10 answers
240k views
Is it possible to use JS to open an HTML select to show its option list? [duplicate]
Is it possible to use JavaScript to open an HTML select to show its option list?
5 votes
3 answers
29k views
Show select dropdown in jQuery? [duplicate]
Possible Duplicate: How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)? Is it possible to make the dropdown on a select element visible with jQuery? I ...
11 votes
2 answers
27k views
Programmatically open a drop-down menu [duplicate]
Possible Duplicate: How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover) Is there a way to programmatically display/open a drop down menu (<select>)?
6 votes
2 answers
14k views
Open the dropdown of a Select element on focus [duplicate]
Possible Duplicate: How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)? Is it possible to open the drop down list of a Select element when the Select ...
3 votes
2 answers
6k views
Display DropDown options on Focus [duplicate]
I have a simple html dropdown, I wants to use jQuery if possible to display all the options if this control has the focus(as if the user click on the dropdown). I have tried jQuery trigger(), click(), ...
0 votes
1 answer
9k views
Click on button to open select options list [duplicate]
Is this even possible to open drop down list with options of item by click on the in js/jquery? Could You help with this, any advice?
1 vote
1 answer
4k views
How to activate the dropdown menu of the select element via keyboard? [duplicate]
I have a select element in my HTML: <select id="dropdown"> <option value="1">First</option> <option value="2">Second</option> </select> It renders as a ...
0 votes
2 answers
3k views
How to open dropdown control(html) without mouse click and using pure javascript [duplicate]
it is possible to open drop down list without mouse click and using pure JavaScript ?
0 votes
1 answer
2k views
Open a Select menu, clicking a button [duplicate]
Here is the issue, which one I am not able solve. In my page, I am having a select menu. Beside the select menu, one button. What I want is, when I click the button, the select menu will open. Here is ...
0 votes
0 answers
528 views
open html select in Firefox [duplicate]
I would like to know if there is an event in Firefox that opens an html select. In Chrome 'mousedown' works, but in Firefox it doesn't. My code is something like event = new MouseEvent('mousedown',{...
-2 votes
3 answers
97 views
How to focus on an element using jQuery? [duplicate]
I have following html <div> <span>Click me</span> <select> <option value="1" selected="selected">1</option> <option value="2">2</...
3 votes
1 answer
146 views
Function that dropdowns list of option in "select" element [duplicate]
Possible Duplicate: How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)? Show select dropdown in jQuery? Suppose i have an select element like this: &...
1 vote
0 answers
56 views
How to trigger a <select> to expand (like it does after a mouse click) [duplicate]
I'm trying to open up the <select> list that a browser renders upon a regular click from a <button>. I tried const select = document.querySelector('select'); select.click(); Nothing ...
1 vote
0 answers
26 views
Simulate Click on Select Element [duplicate]
i need to simulate a click event on a select element to show the options. i found this http://jsfiddle.net/joya/rD3nn/ but it don't work in chrome and firefox. In safari it works. this is my code: $...
91 votes
15 answers
172k views
Can I open a dropdownlist using jQuery
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 ...