I want to create a select menu for my mobile website. I have added the select HTML code to my page.
<select id="menu_mobile">
<option value="" selected="selected">Navigation</option>
<option value="http://example.com/about"> About Us</option>
<option value="index.html"> Home</option>
<option value="index.html"> --Profile</option>
<option value="index.html"> --Services</option>
<option value="index.html"> --Contact</option>
<option value="index.html"> Contact Us</option>
</select>
However, when I view my site on an iPhone, the select menu is not clickable.
Is there a way to resolve this issue?