Hi,
I want to display the text box when a value"other" is selected from the combo box. Do I need to write Jscript? If yes How?
Here is my code...
<form method=post name="myForm" id="myForm">
<select style="width:90%;" id="subject1" name="subject1">
<option selected>Select topic...</option>
<option value="security">Security</option>
<option value="Community">Change Community</option>
<option value="Memberships" >Change Memberships</option>
<option value="Other" >Other ...</option>
</select>
Here is my question
if option value = Other then only the following subject text field should be visible otherwise hidden.
<input id=subject name=subject value="">
Please Help
( Thanks
I want to display the text box when a value"other" is selected from the combo box. Do I need to write Jscript? If yes How?
Here is my code...
<form method=post name="myForm" id="myForm">
<select style="width:90%;" id="subject1" name="subject1">
<option selected>Select topic...</option>
<option value="security">Security</option>
<option value="Community">Change Community</option>
<option value="Memberships" >Change Memberships</option>
<option value="Other" >Other ...</option>
</select>
Here is my question
if option value = Other then only the following subject text field should be visible otherwise hidden.
<input id=subject name=subject value="">
Please Help