I was wondering why when I add the code below the flash disappears under floating dhtml menu in Safari?
Return to Recent Questions
Q:
I was wondering why when I add the code below the flash
disappears in safari, but now works in Firefox, when the dropdown
menu is rolled over? Can it work in both Safari and Firefox?
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;
}
A:
The following code in this function
// Safari detect
if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf('Apple Computer') != -1) && (navigator.product=='Gecko'))
return true;
hides flash in Safari.
Deluxe Menu can't drop down over an object correctly in Safari that is
why the latter will be hidden for a time when the submenu is shown.
You can try to delete this code.
Return to Recent Questions
Related:
- Sep 02, 2006 - Can I show / hide the javascript floating menu .
- Sep 26, 2006 - Is there a way to change the height of the main buttons in my simple dhtml menu.
- Oct 22, 2006 - When the html submenus are over applet in https: the applet disappeared.
- 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?
- Nov 26, 2006 - Can I create my floating menu to make it easier for search engines to crawl through?
- Nov 26, 2006 - How to keep my floating html menu in the centre of the page like <centre></centre>
- Nov 29, 2006 - Why the background images disappear for a while after hovering over html menubar?
|