Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
What is happening now? Error? Nothing? Do you have divs with ids=passenger1,...? I'm also pretty sure you don't want to use a hash as an ID or name (for your select) – Jamie Treworgy May 31 '11 at 19:21
1  
Not closing your function? – Mike Robinson May 31 '11 at 19:22
.onchange try to alert something. first confirm on change event is working – zod May 31 '11 at 20:32

2 Answers

up vote 1 down vote accepted

Ok after thinking back to some old problems i had, i remembered a problem that IE and Chrome have with the onClick event.

<script type="text/javascript">
function display_div(show){
   document.getElementById('passenger1').style.display = "none";
   document.getElementById('passenger2').style.display = "none";
   document.getElementById('passenger3').style.display = "none";
   document.getElementById(show).style.display = "block";

}

</script>

<select id="optionList" onchange="display_div(document.getElementById('optionList').value);">
  <option selected="selected"> </option>
  <option value="passenger1">1</option>
  <option value="passenger2">2</option>
  <option value="passenger3">3</option>
</select>

<div id="passenger1" style="display:none;"> hey, 1 works </div>
<div id="passenger2" style="display:none;"> hey, 2 works </div>
<div id="passenger3" style="display:none;"> hey, 3 works </div>

The solution was to make the function call on the select and use onchange. Then it gets the selected options value and gives it to the function to work its magic

share|improve this answer
Unfortunately closing the function did not solve the problem. – Mike May 31 '11 at 19:39
Ok, ill have a go and get back to you in a few minutes – Ashley Staggs May 31 '11 at 19:46
What's weird is that this works in Firefox but not Chrome... Any ideas? – Mike May 31 '11 at 21:48
well ill try chrome now and make fixes accordingly – Ashley Staggs May 31 '11 at 21:52
@Mike just wondering if you got it working? – Ashley Staggs Jun 2 '11 at 21:12
   <script type="text/javascript">
    function display_div(show){
              document.getElementById('passenger1').style.display = "none";
              document.getElementById('passenger2').style.display = "none";
              document.getElementById('passenger3').style.display = "none";
      document.getElementById(show).style.display = "block";
    }
   </script>

<select name="#" id="#">
      <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>

You should use onchange if you want div shown upon changing. Also you haven't set style property to block to show them. And to hide div use style.display = "none". Above code will work, but if you try to use if-else sequences you can minimize one transition from above code

share|improve this answer
I modified the code using your example. Still, nothing happens when an option is selected. The divs are in the following format: <div id="passenger1" style="display:none;"> hey, 1 works </div> – Mike May 31 '11 at 19:41
@Mike My bad onchange is supposed to used with select element not with option change onchange with onclick it will work. i have tried on my computer and it is working. Ihave changed the function use it – Pradeep May 31 '11 at 20:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.