Here is the markup
<select id="person_prefix" name="prefix">
<option value=""></option>
<option value="Dr" selected="selected">Dr</option>
<option value="Mr">Mr</option>
<option value="Ms">Ms</option>
<option value="Mrs">Mrs</option>
</select>
and I want to trigger a javascript event so that the option list drops down. Using jquery I've tried the following:
$("#person_prefix").click();
$("#person_prefix").mousedown();
$("#person_prefix").change();
but nothing seems to work. Which event is this and how can be triggered?
Thanks