My website features a suburb lookup tool that allows users to input a suburb or postcode (Australian only, e.g. 4000, 2000, Brisbane, Sydney etc) and receive the corresponding suburb/state/postcode in a select menu format:
<select size="4" name="contact_suburb_list" id="contact_suburb_list">
<option value="0">CLEVELAND, NSW 2530</option>
<option value="1">CLEVELAND, QLD 4163</option>
<option value="2">CLEVELAND, TAS 7211</option>
<option value="3">CLEVELAND CROSSING, NSW 2469</option>
</select>
While this feature works well on desktops, it seems that iPads do not fully support the size attribute. Instead of displaying four options in a list as intended, the iPad shows an empty list item.
Clicking on the empty list does bring up the options, but I would like the list to automatically display on iPads. I have tried clicking on the select, focusing on it, and focusing on its first child option without success. Any suggestions on how to make the list pop out automatically on iPads?