CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: div over ifame

  1. #1
    Join Date
    Nov 2001
    Location
    Ukraine (Odesa, Lviv)
    Posts
    74

    div over ifame

    How can I place div over iframe.
    Even when I place iframe on another div and set needed zIndexes it's not help me.
    Actually I need to unfold menu over iframe.

  2. #2
    Join Date
    Aug 2002
    Location
    Reykjavik, Iceland
    Posts
    201
    It sounds like you're trying to have a DHTML expandable menu
    hover over an <iframe> frame. This will not work, as the <iframe>
    is a separate frame, with a separate document. Only if you
    explicitly write out the <div>'s to the document in the <iframe>
    itself will this work.

    An HTML <select> drop down menu can hover over an <iframe>
    when expanded, because as an activeX control it has the highest zIndex.

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured