Hello,
This is just a piece of my code where I have a problem. OnMouseOver and OnMouseOut works 100% in IE, but not NS.
Any reasons for this??
Thanks,Code:onMouseOver="popUp('elMenu2'); m_over(4)" onMouseOut="popDown('elMenu2'); m_out(4
T
Printable View
Hello,
This is just a piece of my code where I have a problem. OnMouseOver and OnMouseOut works 100% in IE, but not NS.
Any reasons for this??
Thanks,Code:onMouseOver="popUp('elMenu2'); m_over(4)" onMouseOut="popDown('elMenu2'); m_out(4
T
specify "javascript:****" in the onmouseout and onmouseover.
Thanks Sastraxi,
I dont know jscript very well. Could you please post an example of what it should look like. What comes in the "****".
Thanks,
T
Code:onMouseOver="Javascript: popUp('elMenu2'); m_over(4)" onMouseOut="Javascript: popDown('elMenu2'); m_out(4
also, i think that for mouseover you might need return true.
Code:onMouseOver="java script: popUp('elMenu2'); m_over(4); return true;" onMouseOut="java script: popDown('elMenu2'); m_out(4
You are correct Sail you need to return true for JavaScript mouse overs.
Hello,
This is what I have and it still does not work for NS!! Could it be that it perhaps has nothing to do with the "OnMouseOut" etc, but with the other script.
Any suggestions??Code:<td valign="top" align="left"><a class="blackmainlinksnav"
onMouseOver="javascript: popUp('elMenu1'); m_over(3); return true;"
onMouseOut="javascript: popDown('elMenu1'); m_out(3);"><img border="0"
src="images/fully_normal.gif" name="i3" width="178" height="19"></a></td>
</tr>
T
Hey, turfbult, you know that the space in "java script" is a glitch with the forums. It should be one word.
depending on what you are doing, it could be something with the rest of your code...
I don't think you need javascript: in event handlers.
Your right, you would only need it for something such as <a href="javascript:whatever()">something</a>