How will I open the option list of an HTML select box from another HTML control?
For instance, I've the following code.
HTML
<select>
<option>Select</option>
<option>Male</option>
<option>Female</option>
</select>
<span>Click Here</span> to select an open from the option box.
SCRIPT
$('span')
.bind('click', function(){
$('select').trigger('click');
});