When the dhtml web menu drops down in Safari over a SWF -- it disappears.
Return to Recent Questions
Q:
There is one other issue I am hoping you can help with? When the dhtml web menu drops
down in Safari over a SWF -- it disappears. I have added the function
dm_ext_ruleObjectHide() code to the top of my data file. Can you please
advise what else I can try?
A:
Submenu couldn't overlap flash in Safari correctly.
And the following code:
// Safari detect
if ((parseInt(navigator.productSub)>=20020000) &&
(navigator.vendor.indexOf('Apple Computer') != -1) &&
(navigator.product=='Gecko'))
return true;
in function
function dm_ext_ruleObjectHide()
{
// Safari detect
if ((parseInt(navigator.productSub)>=20020000) &&
(navigator.vendor.indexOf('Apple Computer') != -1) &&
(navigator.product=='Gecko'))
return true;
else
return false;
}
cause flash to disappear in Safari.
You can try to write this function in the following way:
function dm_ext_ruleObjectHide()
{
return false;
}
Return to Recent Questions
Related:
- Sep 26, 2006 - Is there a way to change the height of the main buttons in my simple dhtml menu.
- Oct 27, 2006 - In IE 6.0 and Firefox 1.5.0.4, the submenus of my dhtml dropdown menu are not visible
- Oct 30, 2006 - I don't see on my website dhtml mouseover menu that I saw on my local machine.
- Nov 05, 2006 - The font color doesn't change when I roll over the dhtml side menu
- Nov 14, 2006 - Can dhtml menu script work with tables ?
- Nov 23, 2006 - It is possible to have context menu work with your tree menu dhtml?
- Dec 04, 2006 - With the licensed .js files of menu dhtml the status bar on IE shows "Error on page".
- Dec 11, 2006 - How to add the new items to the dhtml vertical menu without using two data.js files?
- Dec 14, 2006 - How to use a dhtml javascript menu item so that it opens a window at a certain size?
- Dec 22, 2006 - dhtml submenu doesn't appear over the Flash animation in IE...
- Dec 26, 2006 - I'm trying to have two separate mouseover menus on my web page.
|