jQuery Mobile- change the style of basic drop down select menu

167 Views Asked by At

I have to change the style of the following dropdown select menu:

<form>
<div class="ui-field-contain">
    <label for="select-native-1">Basic:</label>
    <select name="select-native-1" id="select-native-1">
        <option value="1">The 1st Option</option>
        <option value="2">The 2nd Option</option>
        <option value="3">The 3rd Option</option>
        <option value="4">The 4th Option</option>
    </select>
</div>
</form>

all the option should display as list under the label (like Accordion list)

0

There are 0 best solutions below