'Menu' is undefined error
I get a error: 'menu' is not defined, when i load my page.
I use Frames.
<script language="JavaScript" src="menu_files/menu.js"></script>
<script language="JavaScript" src="menu_files/items.js"></script>
<script language="JavaScript" src="menu_files/template.js"></script>
<link rel="stylesheet" href="menu_files/menu.css">
is in the head of all the frames and
<script language="JavaScript">
new menu (MENU_ITEMS0, MENU_POS0);
</script>
is in the end of the body of all except the header frame, it contains the lines
<script language="JavaScript">
var frameset = [ ['Top'],
['Left', 'Body']
]
new menu (MENU_ITEMS0, MENU_POS0, {'frames' : frameset}); </script>
The way i see it, this should work!?
Any suggestions?
P.S The support page was down so thats why i didn't contact them.....
|