Possible Duplicate:
Can I open a dropdownlist using jQuery
Want to open a dropdown, on clicking on a textarea- is it possible?
I am currently trying in jquery-mobile, & want to open the SELECT-BOX in iPhone/Android device.
Here is my code-
JS:
function showScoopCategory()
{
console.log('showScoopCategory');
$('#scoopCategory').click(); // Not opening the dropdown
}
HTML:
<select id="scoopCategory" name="grievence">
<option value="1">Option One</option>
<option value="2">Option Two</option>
<option value="3">Option Three</option>
</select>
...
<textarea id="scoopCategoryText" placeholder="Select & Open Dropdown" onClick="showScoopCategory();"></textarea>