I\'m working on Phonegap app for Android and iOS. Most of the stuff works pretty well but I\'m experiencing a problem with tag. It\'s enhanced wi
Did You try adding data-native-menu="false" attribute to the select menu.
Example:
<select name="gender" id="gender" data-theme="b" data-native-menu="false" >
<option value="">Please specify ...</option>
<option value="option1">Male</option>
<option value="option2">Female</option>
<option value="option3">Undisclosed</option>
</select>
I'm aware this question was published two years ago, but just in case someone face this problem today, as I did recently:
I had the same behaviour as the one you tell. The problem I had was with a div that appeared as a header and had the attribute data-role="header" and data-position="fixed". There's a bug in jquery mobile that causes a number of strange issues in Android 2.2/2.3 (http://demos.jquerymobile.com/1.3.2/widgets/fixed-toolbars/).
I fixed that error removing 'data-position="fixed"' from the header and adding a custom class with the following code:
.custom-header{
position: fixed !important;
left: 0px !important;
right: 0px !important;
top: 0px !important;
z-index: 999 !important;
}
Hope it helps somebody.