Results 1 to 4 of 4

Thread: multiple level navigational bar III - cause html form dro-down to vanish

  1. #1
    Join Date
    Nov 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default multiple level navigational bar III - cause html form dro-down to vanish

    http://www.dynamicdrive.com/dynamici...men3/index.htm

    When the cursor activates any drop downs from the top bar menu,
    the html drop downs <select><option> embedded within an html form
    vanish. They re-appear when cursor is off the menu bar and the mouse is clicked any where on the page. This only occurs with IE.

    I have isolated the menubar scripts and the form to eliminate any extraneous scripts and it still occurs. Any suggestions? There are no script errors being detected on the page.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That is actually a 'feature'. As it so happens, in IE6 (and earlier) a drop down cannot drop over a select box. The solution is to temporarily render them invisible. Apparently this menu has that built in. If its behavior is inappropriate (meaning that at all conceivable window widths the drop downs would never drop over, actually behind, one of your selects as they are too far down the page to pose a potential conflict) this behavior should be able to be turned off. Ideally, it would be a configuration setting but, if not, it is probably in the .js unit that deals with IE and will probably have the word 'select' in it.

    If you want more help:

    PLEASE: Include the URL to your problematic webpage that you want help with.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I just checked, it is a configuration setting in custom.js:

    Code:
    var hideSELECT = false;		// auto-hide select boxes when menus open (ie only)
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. #4
    Join Date
    Nov 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Don't know why I never noticed that in custom.js but thanks, I tried it and it works.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •