cturner Posted July 22, 2007 Share Posted July 22, 2007 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;"> Quote Link to comment Share on other sites More sharing options...
cturner Posted July 23, 2007 Author Share Posted July 23, 2007 The problem has been solved. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.