I am trying to use the dropdown in the PhoneGap application that I am writing. It uses a simple <select>:
<select>
<option value="1">First</option>
<option value="2">Second</option>
</select>
This works great on Android and iPhone (including the fact that on these systems it will work as a native drop-down list). However, it does not work on webOS (neither Palm Pre nor the emulator).
<select> It displays correctly on the screen, but when I click on it, nothing happens - I can not make a selection from the drop-down list.
Why could this be?
source
share