DHTML Menu Compatibility
Collision with other DHTML Scripts
Event Collision
If you have FX Menu and another script in the same page that assigns commands to an event only the last event assignment the browser "sees" will work. So, only one of the scripts will work right. Mainly this happens with window.onload, but there are some other events that might prevent a script from working properly too:
window.onload=init; (<body onload=init()>)
window.onresize
document.onmousemove
document.onmousedown
Solution for Event Collision
Place the external .js files for FX Menu after window.onload, window.onresize, respectively after <body onload=init()>.
Please note: If you use additional scripts relying on document.onmousemove and document.onmousedown FX Menu might not work correctly.
|