From: Giggle Girl on 16 Jun 2006 16:37 I have a very simple "hover menu", which you can see at: http://s161149005.onlinehome.us/DEMOS/FF/HMENU/main/default.htm Once you "pop it up", I want it to disappear if you mouse away from it without clicking anything. It works using "onmouseleave" in IE. I need it to work in Firefox! Can someone show me a way to do this? Thanks, Ann
From: Aaron Gray on 16 Jun 2006 16:49 > Once you "pop it up", I want it to disappear if you mouse away from it > without clicking anything. It works using "onmouseleave" in IE. > > I need it to work in Firefox! > > Can someone show me a way to do this? I believe "onmouseexit()" should work on both IE and FireFox. Aaron
From: Giggle Girl on 16 Jun 2006 17:09 Aaron Gray wrote: > > Once you "pop it up", I want it to disappear if you mouse away from it > > without clicking anything. It works using "onmouseleave" in IE. > > > > I need it to work in Firefox! > > > > Can someone show me a way to do this? > > I believe "onmouseexit()" should work on both IE and FireFox. > > Aaron Hmm.. I substituted <div onmouseleave="hide_Action_Menu(1)"> with <div onMouseExit="hide_Action_Menu(1)"> and it didn't work... But I will do a search and see if I got the syntax right... maybe I have to "bind" it differently? Ann
From: petermichaux on 16 Jun 2006 17:32 Giggle Girl wrote: > Aaron Gray wrote: > > > Once you "pop it up", I want it to disappear if you mouse away from it > > > without clicking anything. It works using "onmouseleave" in IE. > > > > > > I need it to work in Firefox! > > > > > > Can someone show me a way to do this? > > I think you want onmouseout. Peter
From: Giggle Girl on 16 Jun 2006 18:33
petermichaux(a)gmail.com wrote: > Giggle Girl wrote: > > Aaron Gray wrote: > > > > Once you "pop it up", I want it to disappear if you mouse away from it > > > > without clicking anything. It works using "onmouseleave" in IE. > > > > > > > > I need it to work in Firefox! > > > > > > > > Can someone show me a way to do this? > > > > > I think you want onmouseout. > > Peter Onmouseout doesn't work at all. When it encounters a contained div or table, it fires, so it totally fails for my purposes. Thanks for the thought, though. I did try it when I was making this thing before posting... Ann |