
Originally Posted by
TimFA
Can we see Glossary.html and the others? Humor me and you win a prize! Lol, just kidding. I don't see anything that stands out, but please do post the pages content.
Tim
They are available online, no need to clutter up a post with the code.
I'd try getting rid of this (from portalMenuItems.js):
Code:
//Set variable for the Back menu item.
var back1=history.go(-1);
or changing it to a string:
Code:
//Set variable for the Back menu item.
var back1='history.go(-1);';
Perhaps even making it (I think this would be the best):
Code:
//Set variable for the Back menu item.
var back1='javascript:history.go(-1);';
But, where it is used should then be:
Code:
["Go Back", back1, ""],
Bookmarks