Here is the JSFiddle relating to my question. http://jsfiddle.net/kane/MFJUv/
I've tried several things to show/hide the dropdown (div id: machinedropdown).
On load I want the machine dropdown to be hidden but when a user selects the "Machine" radio button it needs to show. Can anyone suggest a solution for me?
<div data-role="content" id="radio" <form> <fieldset data-role="controlgroup" data-type="horizontal" class="center-controlgroup"> <input name="radio-choice-h-6" id="radio-choice-h-6a" type="radio" checked="checked" value="on"> <label for="radio-choice-h-6a">Run</label> <input name="radio-choice-h-6" id="radio-choice-h-6b" type="radio" value="off"> <label for="radio-choice-h-6b">Swim</label> <!-- ON SELECT I NEED TO HIDE THE "div id = "machinedropdown" --> <input name="radio-choice-h-6" id="radio-choice-h-6c" type="radio" value="off"> <label for="radio-choice-h-6c">Machine</label> </fieldset> </form> </div> <div data-role="content" id="machinedropdown" <label class="select" for="select-choice-1">Select, native menu</label> <select name="select-choice-1" id="select-choice-1"> <option value="standard">Machine 1</option> <option value="rush">Machine 2</option> <option value="express">Machine 3</option> <option value="overnight">Machine 4</option> </select> </div>