I have the following code:
<select> <option value="Type 1">Type 1</option> <option value="Type 2">Type 2</option> <option value="Type 3">Type 3</option> <option value="Other">Other</option> </select> <input type="text" id="other" />
What I want to do is use jQuery to put the text box below the hidden default and then show it if the user selects another option from the drop-down list.
javascript jquery hide show
Cameron
source share