Hi,
I have a table that have a drop down box. What I want to do is to display the 2 table cell next to the dropdown box only when the second item from the list being selected. I want to use the onchange event but don't know how. Can someone please show me how to do this? I'm new to jv script. Below is all I have.
Thank in advance
I have a table that have a drop down box. What I want to do is to display the 2 table cell next to the dropdown box only when the second item from the list being selected. I want to use the onchange event but don't know how. Can someone please show me how to do this? I'm new to jv script. Below is all I have.
Thank in advance
Code:
<HEAD>
<SCRIPT LANGUAGE=javascript>
<!--
function moreoption(party) {
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<H1>Mycomputer pc Node</H1>
<table>
<tr>
<td><select name="party" onchange="moreoption(party)">
<option value=" " selected> party </option>
<option value="01">Client</option>
<option value="02">Guess</option>
<option value="03">Levi</option>
</select>
</td>
<td><input type="radio" name="SUMMARY" value="Y" checked>Summary</td>
<td><input type="radio" name="SUMMARY" value="N">Detail</td></TR>
</table>