Jump to content

On select display another combo box not working for me???


cturner

Recommended Posts

Okay I give up. What I am trying to do is: when Company in the eligibilitytype combo box is selected it is meant to display select1 combo box. I have posted the code that I have been working with, below. Can someone please help me solve this problem? Thanks in advance.

 

  function dropdown1(select1) {
    var srcElement = document.getElementById(select1);
var a = document.getElementById(eligibilitytype);
    if(a == "Company") {
       srcElement.style.display = 'block';
    } else {
       srcElement.style.display = 'none';
    }
    return false;
  }

 

<select name="eligibilitytype" id="eligibilitytype" onchange="dropdown1(this.value)">

 

<select name="select1" id="select1" style="display: none;">

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.