I am trying to show divs based on input from a dropdown menu.
<script type="text/javascript">
function display_div(show){
document.getElementById(show).style.display = "";
}
</script>
<select name="passengers" id="passengers">
<option selected="selected"> </option>
<option onclick="display_div('passenger1');">1</option>
<option onclick="display_div('passenger2');">2</option>
<option onclick="display_div('passenger3');">3</option>
</select>
Nothing happens when I select an option. What am I doing wrong here?
passenger1,...? I'm also pretty sure you don't want to use a hash as an ID or name (for yourselect) – Jamie Treworgy May 31 '11 at 19:21