Hi,
I have x number of drop down menus (contain food names) and I need to add a button next to each of the menu. Each button will appear only when user select one particular food name. If they select other food I don't want to show this button.
Can someone please help provide sample java script.
Here's my drop down menu.
Thanks in advance
I have x number of drop down menus (contain food names) and I need to add a button next to each of the menu. Each button will appear only when user select one particular food name. If they select other food I don't want to show this button.
Can someone please help provide sample java script.
Here's my drop down menu.
Code:
<% for ix=0 to count %>
<tr>
<td class="ver10pxgry2" width="105" align="right"><b>Items</b></td>
<td colspan="3">
<select name="<%=foodlist(ix)%>" class="ver10pxblk">
<option selected value="">Select One </option>
<% for j = 0 to numberofitems - 1 %>
<option value="<%=code(j)%>"> <%=foodname(j)%></option>
<% next %>
</select>
</td>
</tr>
<tr> tr>
<% next %>
Thanks in advance