I'm developing a mobile application on Appverse (multiplatform webkit container, like phonegap) and it works very smooth on iOS. However, I've found serious problems when using the same application on Android.
The dropdowns are displayed correctly, but when I click on them the native dropdown (roller) appears and disappears in a fraction of second.
Any clue about what could happen?
The application is using jQuery Mobile, and the dropdowns are specifically native. (In the last test, I'm using a plain HTML page, as the following one, with the same results)
EDIT: The tested HTML code into the WebView is simply this one:
<html>
<head></head>
<body><form>
<select id='myoptions'>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</form></body>
</html>