When I click on the select button in my app, it displays multiple options. This functionality works smoothly on Android 4.1, but on Android 2.2, clicking on the select button does not have any effect and therefore the options cannot be selected.
<section class="fullContainer">
<div class="container">
<div class="descriptionRedeem"></div>
<div class="redeemContent">
<form id="form_SNOWFLYGIFTCARDS">
<p>Select a gift card</p>
<select name="giftName" id="giftId">
<option value="">Select</option>
<option value="1001">Toys</option>
<option value="1002">Cosmetics</option>
<option value="1003">Cloths</option>
</select>
<input type="button" value="Submit" name="submit_snowfly_gc" onclick="submitRedeemPoint()" > <br>
<input type="reset" value="Cancel" name="_eventId_Cancel" >
</form>
</div>
</div>
</section>