[HTML]<html>
///
here what shoud be java script for:
->when script run then not display all input text field only display selection field.
->when user select other value for institute only this field display not display degree text field
->when user select other value in the selection field for degree then text field display and wise versa
////
<bodly>
<table>
<tr>
<td>select Institute:</td>
<td>
<select name='inst' id='inst'>
<option value='select'> select</option>
<option value='a'>a</option>
<option value='b'>b</option>
<option value='other'>o ther</option>
</select>
<input type='text' name='odeg' id='odeg'>
</td>
</tr>
<tr>
<td>select Degree:</td>
<td>
<select name='deg' id='deg'>
<option value='select'> select</option>
<option value='x'>x</option>
<option value='y'>y</option>
<option value='other'>o ther</option>
</select>
<input type='text' name='odeg' id='odeg'>
</td>
</tr>
</table>
</body>
</html>[/HTML]
////////////////
pls care fully seee my problem and solve. i will be higly oblige to all of u forum users.
Thanks and Regards
dkyadav80
///
here what shoud be java script for:
->when script run then not display all input text field only display selection field.
->when user select other value for institute only this field display not display degree text field
->when user select other value in the selection field for degree then text field display and wise versa
////
<bodly>
<table>
<tr>
<td>select Institute:</td>
<td>
<select name='inst' id='inst'>
<option value='select'> select</option>
<option value='a'>a</option>
<option value='b'>b</option>
<option value='other'>o ther</option>
</select>
<input type='text' name='odeg' id='odeg'>
</td>
</tr>
<tr>
<td>select Degree:</td>
<td>
<select name='deg' id='deg'>
<option value='select'> select</option>
<option value='x'>x</option>
<option value='y'>y</option>
<option value='other'>o ther</option>
</select>
<input type='text' name='odeg' id='odeg'>
</td>
</tr>
</table>
</body>
</html>[/HTML]
////////////////
pls care fully seee my problem and solve. i will be higly oblige to all of u forum users.
Thanks and Regards
dkyadav80
Comment