Hello,
I have the same quiz under different folders on the server. I would like to put the quiz only in one folder(name=quiz) so this would be easier for updates.
it goes something like this:
1 - (I click on the quiz page and it goes to #2)
2 - (then I choose between 2 quizzes and it goes to #3)
3- ( when I am done and would like to receive my certificate
I would like to go to #4)
4-
The problem is under #3, the forward to #4 doesn’t work??
Could someone help me please???
this is the code in quiz_basic.htm:
function NextLevel () {
if (score > 10) {
alert("You cheated.");
}
if (score >= 10 && score <= 10) {
self.location="../quizinfo.htm" ---THIS IS THE PROBLEM
}
this is my button:
<input type=button onClick="NextLevel()" value="Receive Your Certificate">
Thanks
I have the same quiz under different folders on the server. I would like to put the quiz only in one folder(name=quiz) so this would be easier for updates.
it goes something like this:
1 - (I click on the quiz page and it goes to #2)
2 - (then I choose between 2 quizzes and it goes to #3)
3- ( when I am done and would like to receive my certificate
I would like to go to #4)
4-
The problem is under #3, the forward to #4 doesn’t work??
Could someone help me please???
this is the code in quiz_basic.htm:
function NextLevel () {
if (score > 10) {
alert("You cheated.");
}
if (score >= 10 && score <= 10) {
self.location="../quizinfo.htm" ---THIS IS THE PROBLEM
}
this is my button:
<input type=button onClick="NextLevel()" value="Receive Your Certificate">
Thanks