I am having the following problem under Internet Explorer 7/8:
I have a popup that gets activated when user mouseover a link. The popup is a simple <div>
that contains some data. Inside this <div>
tag there is a <select>
tag with some <option>
s. I have attached mouseover/mouseout events to the <div
>, so that this popup will stay open while cursor is over it. The problem comes when you click on the <select>
and then move the cursor over any of the <option>
s. This triggers the mouseout event of the <div>
tag and respectively closes it.
How can I prevent the closing of the popup in IE ?