I know this has come up recently, but software upgrades did not solve my issue.
I have upgrdaded the menuing to version 5.766 and am using Firefox 2.0.0.1, but while the menus appear fine in IE, they don't appear at all in Firefox.
The one file I did not upgrade was menu_data.js, but I don't think that should be an issue.
I am using nav buttons I created in photshop with rollovers created in imageready. In firefox, the rollover images display, but not the drop down menus.
It seems to me that I had this issue a couple of years ago with the very same menu setup, and somehow got it working with Firefox. I've sifted through that code but cannot find what makes it work.
Any help would be greatly appreciated!
Added Note:
Since posting this I did a bit more poking around and found that firefox reports the following error when mousing over a nav button with a menu attached to it:
k_ has no properties
mmenudom.js
Robert
DHTML Menu not appearing in Firefox
DHTML Menu not appearing in Firefox
Thanks.
Robert
Robert
Url to test with
I finally have a url that this can be tested at.
http://www.key-netix.com/if/header_nav.php
In Firefox I get such errors as 'k_ has no properties' and document.layers has no properties'.
Any help would is greatly appreciated.
http://www.key-netix.com/if/header_nav.php
In Firefox I get such errors as 'k_ has no properties' and document.layers has no properties'.
Any help would is greatly appreciated.
Thanks.
Robert
Robert
Hi,
You need to declare id's for the popup menu parents.
For example, with this code popup('content_filter_settings','settings',0,0); you are requesting that the popup function set its position based on the settings object. You have declared a name with name=settings but you also need to declare an id, with id=settings
Like this:
Hope this helps,
Andy
You need to declare id's for the popup menu parents.
For example, with this code popup('content_filter_settings','settings',0,0); you are requesting that the popup function set its position based on the settings object. You have declared a name with name=settings but you also need to declare an id, with id=settings
Like this:
Code: Select all
<TD rowSpan=2><A
onmouseup="changeImages('settings', 'images/settings-over.gif'); return true;"
onmousedown="changeImages('settings', 'images/settings-over.gif'); return true;"
onmouseover="changeImages('settings', 'images/settings-over.gif'), popup('content_filter_settings','settings',0,0); return true;"
onmouseout="changeImages('settings', 'images/settings.gif'),popdown(); return true;"
href="http://websites.milonic.com/key-netix.com/if/header_nav.php#"><IMG height=16 alt=""
src="iface_files/settings.gif" width=165 border=0 name=settings id=settings></A></TD>
Andy