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;"> Link to comment https://forums.phpfreaks.com/topic/61203-on-select-display-another-combo-box-not-working-for-me/ Share on other sites More sharing options...
cturner Posted July 23, 2007 Author Share Posted July 23, 2007 The problem has been solved. Link to comment https://forums.phpfreaks.com/topic/61203-on-select-display-another-combo-box-not-working-for-me/#findComment-305025 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.