[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Html drop-down menu in Mozilla/Firefox



Shaikh Quader wrote:

> For example, a drop-down menu generated from the following html is easily
> visible in Internet Explorer. But the drop-down  isn't visible when the
> web page is opened from Mozilla/Firefox.
> 
> <div Id="menu1" class="menu" >
>   <div Id="menuItem1_3" class="menuItem"><a
> href="member.html">Members</a></div>
>   <div Id="menuItem1_3" class="menuItem"><a
> href="constitution.html">Constitution</a></div>
>    <div Id="menuItem1_3" class="menuItem"><a
> href="event.html">Event</a></div>
> </div>

This HTML is wrong. The following HTML renders a drop-down box perfectly on
both IE and Firefox.

<select name="subject">
    <option value="Website Form: Sales/Service">Sales/Service</option>
    <option value="Website Form: Billing">Billing</option>
    <option value="Website Form: Website">Website</option>
    <option value="Website Form: Employment">Employment</option>
    <option value="Website Form: Misc">Other</option>
</select>

Adam



Reply to: