I'm attempting to have 2 other dropdowns appear or hide based on a selection from the first dropdown.
I'd like them both to be invisible when the page loads and then to appear if a certain selection if picked from the first dropdown. Could you please assist in the making them invisible when it loads?
Here is the code I have so far, and it partially works in that if one is selected the other disappears. But that's as far as I could get it to work. Thanks.
<code>
<select name="oaid" class="TextField" id="oaid"
onchange="if (this.value=='12') {
document.getElementById('oid').style.visibility='visible';
document.getElementById('wcfoffice').style.visibility='hidden';}
if (this.value=='14') {
document.getElementById('oid').style.visibility='hidden';
docuement.getElementById('wcfoffice').style.visibility='visible';}"
>
<?php
do {
?>
<option value="<?php echo $row_rs_oalist['oaid']?>"><?php echo $row_rs_oalist['oa_name']?></option>
<?php
} while ($row_rs_oalist = mysql_fetch_assoc($rs_oalist));
$rows = mysql_num_rows($rs_oalist);
if($rows > 0) {
mysql_data_seek($rs_oalist, 0);
$row_rs_oalist = mysql_fetch_assoc($rs_oalist);
}
?>
</select>
</div></td>
<td> </td>
</tr>
<tr>
<td><div align="right">OST Office: </div></td>
<td><select name="oid" id="oid">
<option value=" "></option>
<?php
do {
?>
<option value="<?php echo $row_rs_ostoffice['ostid']?>"><?php echo $row_rs_ostoffice['ost_office']?></option>
<?php
} while ($row_rs_ostoffice = mysql_fetch_assoc($rs_ostoffice));
$rows = mysql_num_rows($rs_ostoffice);
if($rows > 0) {
mysql_data_seek($rs_ostoffice, 0);
$row_rs_ostoffice = mysql_fetch_assoc($rs_ostoffice);
}
?>
</select></td>
<td>WCF Office: <select name="wcfoffice" id="wcfoffice">
<option value=" "> </option>
<option value="0402001000">0402001000</option>
<option value="1005001000">1005001000</option>
<option value="1203001000">1203001000</option>
<option value="1204002000">1204002000</option>
<option value="1901002000">1901002000</option>
<option value="1202014000">1202014000</option>
</select></td>
</code>
I'd like them both to be invisible when the page loads and then to appear if a certain selection if picked from the first dropdown. Could you please assist in the making them invisible when it loads?
Here is the code I have so far, and it partially works in that if one is selected the other disappears. But that's as far as I could get it to work. Thanks.
<code>
<select name="oaid" class="TextField" id="oaid"
onchange="if (this.value=='12') {
document.getElementById('oid').style.visibility='visible';
document.getElementById('wcfoffice').style.visibility='hidden';}
if (this.value=='14') {
document.getElementById('oid').style.visibility='hidden';
docuement.getElementById('wcfoffice').style.visibility='visible';}"
>
<?php
do {
?>
<option value="<?php echo $row_rs_oalist['oaid']?>"><?php echo $row_rs_oalist['oa_name']?></option>
<?php
} while ($row_rs_oalist = mysql_fetch_assoc($rs_oalist));
$rows = mysql_num_rows($rs_oalist);
if($rows > 0) {
mysql_data_seek($rs_oalist, 0);
$row_rs_oalist = mysql_fetch_assoc($rs_oalist);
}
?>
</select>
</div></td>
<td> </td>
</tr>
<tr>
<td><div align="right">OST Office: </div></td>
<td><select name="oid" id="oid">
<option value=" "></option>
<?php
do {
?>
<option value="<?php echo $row_rs_ostoffice['ostid']?>"><?php echo $row_rs_ostoffice['ost_office']?></option>
<?php
} while ($row_rs_ostoffice = mysql_fetch_assoc($rs_ostoffice));
$rows = mysql_num_rows($rs_ostoffice);
if($rows > 0) {
mysql_data_seek($rs_ostoffice, 0);
$row_rs_ostoffice = mysql_fetch_assoc($rs_ostoffice);
}
?>
</select></td>
<td>WCF Office: <select name="wcfoffice" id="wcfoffice">
<option value=" "> </option>
<option value="0402001000">0402001000</option>
<option value="1005001000">1005001000</option>
<option value="1203001000">1203001000</option>
<option value="1204002000">1204002000</option>
<option value="1901002000">1901002000</option>
<option value="1202014000">1202014000</option>
</select></td>
</code>