Using the WebCalendar app http://www.k5n.us/webcalendar.php and I'm creating some custom edits for the way extra fields work.
Particularly, I have two extra fields created; one of them being a dropdown list of counties, and the other being a text field. One option in the dropdown list is **OTHER and the text field is there for the user to specify their **OTHER selection.
I can specify the dropdown list and selection in PHP with the following:
if ($site_extras[1][3] == '**OTHER' )
{ do something to hide html class .other_field }
Any hints or pushes in a direction that I may look into for hiding/showing the text field based on the dropdown list input?
Please edit and remove/add tags as necessary. I just selected ones that may be relevant for the needs of this operation.
EDIT: Html snippet
<table class="extra_table" summary="">
<tr>
<td class="aligntop bold">*Location:</td>
<td class="extra_field_input">
<select name="County">
<option value="Select County...
" selected="selected">Select County...
</option>
<option value="DODGE" >DODGE
</option>
<option value="DOUGLAS" >DOUGLAS
</option>
<option value="LANCASTER" >LANCASTER
</option>
<option value="MADISON" >MADISON
</option>
<option value="**OTHER" >**OTHER
</option>
<option value="--------------------" >--------------------
</option>
</select>
</td>
</tr>
<tr>
<td class="aligntop bold">**If Other, Please Specify:</td>
<td class="extra_field_input">
<input type="text" size="17" name="Other_County" value="" />
</td>
</tr>
input nameandoption valuepossible? Excuse my ignorance as I'm a beginner with php/javascript/jquery. – Mechaflash Oct 28 '11 at 16:17