Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a fairly unique problem with IE. I've built a custom tooltip that will create a div, position it, and populate it with whatever I throw at it. Our friend (ha) IE has thrown a wrench into it. Here's an example tooltip:

<span class="tooltipTrigger">Hover over me.
    <div>           
    <form action="uploaded.php" method="post">
        <b>Priority:</b></td>
            <select name="priority">
            <option value=""></option>
            <option value="1">Low</option>
            <option value="2">Medium</option>
            <option value="3">High</option>
            </select><br />
        <input type="button" value="Update Settings" />
    </form>
    </div>
</span>

I use the .hover() function in jQuery to set the mouseover/mouseout events. When you hover over the span text, the div will then show up and you can edit your form as you please in Chrome, Safari, and Firefox. In IE however, the problem comes up when you click on the drop down menu. If you click on it, and stay there, nothing changes. But as soon as you start scrolling down to select an option (even though you are still within the div that pops up), IE thinks that you're no longer hovering over the span/div, so it starts the mouseout event and hides my tooltip. This does not happen in any other browser I've tried. Just IE7, 8, and 9.

Does IE create an element that isn't populated in or nearby the select element when it populates a drop down menu when it's clicked? (does it append it to the body or something?) Does anyone know of a workaround or who have ran into this before?

I'll post the jQuery code for the hover() event if you feel you really need it to understand the problem, but it seems it isn't with the code, it's how IE behaves. The code is just super long.... :-/

Edit: Found a link on MSDN that gives a slight hint in case it triggers anyones memory....

Remarks

From Microsoft Internet Explorer 5 to Microsoft Internet Explorer 6, This element is a windowed control and does not support the z-index attribute or zIndex property. As of Windows Internet Explorer 7, this element is windowless and supports the z-index attribute and the zIndex property. The SELECT element does not require a strict doctype to enable windowless functionality.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.