Back To Start Of Archive
Taken From The Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:43
menu stays on and not disappearing
Poster: zirosman
Dated: Thursday September 19 2002 - 11:21:42 BST
Hello,
I will appriciate any help or suggestion to my problem.
I have an application which the first page (1) has an iframe tag which directs to frames.html second page (2)
I positioned the menu in the first page and its fine, the menu shown over the iframe and that is good.
when the mouse over an item menu that have multiple entries its show them all and when i leave this menu item its stays on and not
disappear until i move to a menu item which doest not have multiple items.
I guess the problem is when i move the mouse down off the menu, it immidiatly goes to another frame (for example Main)
and dont has the chance to disappear ?
Hope I explained it well enough, I hope someone will be able to help me
TIA
Ronen
(1) first html
<html>
<Script Language="JavaScript" Src="menu_array.js"></Script>
<SCRIPT language=JavaScript src="mmenu.js" type=text/javascript></SCRIPT>
<iframe src="frames.html" name="InternalFrame" id="InternalFrame" width="750" height="395" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</html>
(2) second html
<html>
</SCRIPT>
<script language="JavaScript">
document.writeln('<frameset id=outerfr rows="17px,*" border="0">');
document.writeln('<frame name="MenuHide" src="blank.html" scrolling="no" frameborder="0">');
document.writeln('<frame name="Main" src="form.htm?dw=d_login" scrolling="no" frameborder="0">');
document.writeln('</frameset>');
</SCRIPT>
</html>