I'm using jQuery mobile's flip switch and by default the switches are off. I can't figure out how to set the default value to 'ON'
<form id="sound-switch">
        <select name="flip-3" id="snd-switch" data-role="flipswitch" data-mini="true">
        <option value="off">Off</option>
        <option value="on">On</option>
    </select>
</form>
I read somewhere to add value="on" to the html but I can't get it to work. Does anyone have any experience with this?