Is it possible to use the following code in V.7?
This code doesn't seem to call the javascript prepareMenu() function, but in a test application (not Actinic) the script works fine.
Any ideas?
Code:
if (window.addEventListener){
window.addEventListener("load", prepareMenu, false)
} else if (window.attachevent) {
window.attachevent("onload", prepareMenu)
} else {
window.onload=prepareMenu
}
Any ideas?
Comment