This is the particular code I am having problems with:
This JavaScript code needs to be pasted into each quiz page:
-------------------
function initPage() {
var navBar = parent.nav
var thisQuizPage = navBar.findPage(document.URL)
if (thisQuizPage.completed) {
MM_setIntProps('G01.setDisabled(true);')
} else {
navBar.setTries(document.URL, 0)
}
}
function updateQuiz() {
parent.nav.setTries(document.URL, G01.tries);
parent.nav.setTimes(document.URL, G01.time, G01.timeLimit);
parent.nav.setScores(document.URL, G01.score);
}
-------------------
However, I do not have a frameset setup - I have 7 seperate
quiz pages (q1.html > q7.html) and a results. html page. All
linked by a simple button navigation setup not a frameset.