place DIV over IFRAME using MOUSEOVER and MOUSEOUT event

Discussion of bugs in Mozilla Firefox
Post Reply
User avatar
ViniciusCamara
Posts: 9
Joined: September 5th, 2005, 9:44 am
Contact:

place DIV over IFRAME using MOUSEOVER and MOUSEOUT event

Post by ViniciusCamara »

Hi Fellows!
I'm developing my pages now to Mozilla and I found some problems with DIV over IFRAME. See the code below:

<html>
<head>
<style type="text/css">
#floatframe {
position:absolute;
left: 0px;
top: 0px;
background-color:red;
width: 200px;
height: 250px;
z-index:1;
}

</style>
</head>
<html>
<body topmargin="0" leftmargin="0" style="z-index:1">
<div id="floatframe" onmouseover="this.style.width='450px';this.style.height='450px';" onmouseout="this.style.width='200px';this.style.height='250px';">
asdfasdfasdfasdf
</div>

<iframe name="teste" style="display:block; BORDER-RIGHT: black thin solid; BORDER-TOP: black thin solid; Z-INDEX: 0; BORDER-LEFT: black thin solid; WIDTH: 50%; BORDER-BOTTOM: black thin solid; POSITION: absolute; HEIGHT: 50%; BACKGROUND-COLOR: transparent; TOP:250" SRC="http://www.google.com.br" frameborder="1"></iframe>
</body>
</html>

I saw in some topis that is not possible to do in the Mozilla Firefox.
Can help me with this topic? It's too important to me. Using IE that's working well.
Thankx a lot!
Nezrahm
Posts: 49
Joined: January 24th, 2005, 9:50 am

Post by Nezrahm »

WFM, Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6

Maybe you have an extension like NoScript activated?
User avatar
ViniciusCamara
Posts: 9
Joined: September 5th, 2005, 9:44 am
Contact:

Post by ViniciusCamara »

Where will I see this extension activation ?
User avatar
Alfred Neuman
Posts: 1930
Joined: January 19th, 2005, 10:52 am

Post by Alfred Neuman »

Is a mouseover event like something that is supposed to happen on this page?

http://www.languageguide.org/im/colors/de/

You are supposed to hear the color spoken in German when you put the mouse cursor over a color patch.
Do you often feel that you must be from another planet, or wish you were?
User avatar
ViniciusCamara
Posts: 9
Joined: September 5th, 2005, 9:44 am
Contact:

Post by ViniciusCamara »

The mouseover event expand the div to another size. When the mouse pass the iframe tag this lost the event and the div returns to the original size. So, when I use the IE works very well. See diferences using Mozilla and IE.
mw22
Posts: 2379
Joined: November 19th, 2002, 5:37 pm

Post by mw22 »

You weren't accidently talking about https://bugzilla.mozilla.org/show_bug.cgi?id=307136 , right? ;)
User avatar
ViniciusCamara
Posts: 9
Joined: September 5th, 2005, 9:44 am
Contact:

Post by ViniciusCamara »

All people,
Thankx. I resolved this item!
With the DeepPark Alpha 2 works fine!
Post Reply