Well, since this menu depends upon browser sniffing and hasn't been updated since Opera 7 . . . you get the idea. Just by playing around, I found that if Opera were set to use the ie5m-build.js instead of the default op7-build.js it is steered to by browser.js that example.htm and example2.htm worked OK, but that example3.htm still had problems. To make this change, edit this line in browser.js -
Code:
else if (opera)
document.write('<script type="text/javascript" src="' + buildDir + 'op7-build.js"></script>');
Change it to:
Code:
else if (opera)
document.write('<script type="text/javascript" src="' + buildDir + 'ie5m-build.js"></script>');
The only other alternatives I can think of would be:
1 ) Use a different menu
2 ) Find a more current version of this one
3 ) Update the op7-build.js file somehow
Bookmarks