I have been trying to create a quiz for my website and I am confused. This is the code I am using but it doesn't seem to be showing up when I preview in a browser.
I have this in the head
Thanks in advance for any help you can provide!
I have this in the head
Code:
<head> <script type="text/javascript">
var ans = new Array;
var done = new Array;
var score = 0;
ans[1] = "d";
ans[2] = "c";
ans[3] = "c";
ans[4] = "d";
ans[5] = "a";
ans[6] = "d";
ans[7] = "b";
ans[8] = "a";
ans[9] = "b";
ans[10] = "b";
function Engine(question, answer) {
if (answer != ans[question]) {
if (!done[question]) {
done[question] = -1;
alert("Wrong!\n\nYour score is now: " + score);
}
else {
alert("You have already answered that!");
}
}
else {
if (!done[question]) {
done[question] = -1;
score++;
alert("Correct!\n\nYour score is now: " + score);
}
else {
alert("You have already answered that!");
}
}
}
function NextLevel () {
if (score > 10) {
alert("Cheater!");
}
if (score >= 7 && score <= 11) {
alert("Access permitted!")
}
else {
alert("Sorry you are wrong")
}
}
// End -->
</script>
and then I have some code for the websites nav bar ect. and then this in the body.
<script type="text/javascript">
/* <![CDATA[ */
<font size=6 face=Arial>Music Quiz</font><br><p>
<b>Objective: answer 7 questions correctly. JavaScript required!</b><p>
<noscript>JavaScript is <b><i>disabled</b></i>. Get Netscape 3.0 or turn it on!</noscript>
<hr noshade>
<FORM>
<b>1. Who is the lead singer of U2? 2</i>?</b><p>
<input type=radio value="a" onClick="Engine(1, this.value)">Damien Rice<br>
<input type=radio value="b" onClick="Engine(1, this.value)">Jonnhy Rotton<br>
<input type=radio value="c" onClick="Engine(1, this.value)">Paul Weller<br>
<input type=radio value="d" onClick="Engine(1, this.value)">Bono<p>
<b>2. Oasis were made a hit with which song?.</b><p>
<input type=radio value="a" onClick="Engine(2, this.value)">Creep<br>
<input type=radio value="b" onClick="Engine(2, this.value)">Everyday is sunday<br>
<input type=radio value="c" onClick="Engine(2, this.value)">Wonderwall<br>
<input type=radio value="d" onClick="Engine(2, this.value)">Charmer 3D<p>
<b>3. Who is the youngest female artist to reach number 1. in the USA?</b><p>
<input type=radio value="a" onClick="Engine(3, this.value)">Britney Spears<br>
<input type=radio value="b" onClick="Engine(3, this.value)">Janet Jackson<br>
<input type=radio value="c" onClick="Engine(3, this.value)">JoJo<br>
<input type=radio value="d" onClick="Engine(3, this.value)">Avril<p>
<b>4. Which famous rappers auto biographical film was called 8 Mile</b><p>
<input type=radio value="a" onClick="Engine(4, this.value)">Busta Rhymes<br>
<input type=radio value="b" onClick="Engine(4, this.value)">Dizzee Rascal<br>
<input type=radio value="c" onClick="Engine(4, this.value)">Eminem<br>
<input type=radio value="d" onClick="Engine(4, this.value)">50 Cent<p>
<b>5. Which Artist has had their song reach Number 1 the most?: </b><p>
<input type=radio value="a" onClick="Engine(5, this.value)">The Beatles<br>
<input type=radio value="b" onClick="Engine(5, this.value)">Mariah Carey<br>
<input type=radio value="c" onClick="Engine(5, this.value)">Michael Jackson<br>
<input type=radio value="d" onClick="Engine(5, this.value)">Madonna<p>
<b>6.Michael Jackson anty racist song: </b><p>
<input type=radio value="a" onClick="Engine(6, this.value)">I am not just a colour<br>
<input type=radio value="b" onClick="Engine(6, this.value)">Billie Jean<br>
<input type=radio value="c" onClick="Engine(6, this.value)"> Ben<br>
<input type=radio value="d" onClick="Engine(6, this.value)">Black or White<p>
<b>7. Justin Timberlake used to be in which boy band?: </b><p>
<input type=radio value="a" onClick="Engine(7, this.value)">Five<br>
<input type=radio value="b" onClick="Engine(7, this.value)">Nsync<br>
<input type=radio value="c" onClick="Engine(7, this.value)">Backstreet Boys<br>
<input type=radio value="d" onClick="Engine(7, this.value)"> Mecury 4<p>
<b>8. Which Band is not Australian: </b><p>
<input type=radio value="a" onClick="Engine(8, this.value)">Silverchair<br>
<input type=radio value="b" onClick="Engine(8, this.value)">The Living End<br>
<input type=radio value="c" onClick="Engine(8, this.value)">Evermore<br>
<input type=radio value="d" onClick="Engine(8, this.value)">Powderfinger<p>
<b>9. Which of these is not a Britney Spears song?</i> went to: </b><p>
<input type=radio value="a" onClick="Engine(9, this.value)">Toxic<br>
<input type=radio value="b" onClick="Engine(9, this.value)">Faith<br>
<input type=radio value="c" onClick="Engine(9, this.value)">Lucky<br>
<input type=radio value="d" onClick="Engine(9, this.value)">Baby One More Time<p>
<b>10. Radiohead's new release, <i>Diablo</i> is a: </b><p>
<input type=radio value="a" onClick="Engine(10, this.value)">The Bends<br>
<input type=radio value="b" onClick="Engine(10, this.value)">In Rainbows<br>
<input type=radio value="c" onClick="Engine(10, this.value)">Hail to the Theif<br>
<input type=radio value="d" onClick="Engine(10, this.value)">Kid A<p>
<CENTER>
<input type=button onClick="NextLevel()" value="Advance to next level">
</CENTER>
</FORM>
</script>
Thanks in advance for any help you can provide!
Comment