How to open the select without a mouseclick. I need on mousemove opening:
<select id="sel" onmouseover="???open the option list??" onmouseout="???close the option list??">
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
Also jquery's $('#sel').trigger('mousedown');
doesn't work. I don't
want mousover="this.size=3" onmouseout="this.size=1".
Can somebody give a simple code?