Hi, I was wondering if it's possible to open up a select element (combobox?) by clicking on another object, as if I were actually clicking on the select?
-----------------------------------
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook
Code:
<select id="justATest">
<option>this
<option>is
<option>just
<option>a
<option>test
</select>
....
<button onclick="document.all.justATest.click">click to open</button>
-----------------------------------
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook