JavaScript Question

G

Guest

I am trying to add a JavaScript quiz to my site that I got from a Javascript
site. I copied the code into my site as directed. When I get the quiz
working, I will reword the questions and answers. The quiz works some, but
no answer returns a correct response. For example, the answer to question
one is "c" but that returns an incorrect response. My quiz is shown at:
http://www.allhikers.com/allhikers/Test-your-knowledge/Test-your-knowledge-1.htm
A site with the same type of test that does work is:
http://grandcanyontreks.org/quiz.htm.

Thanks for any help.
 
S

Stefan B Rusynko

Your problem is your values have extra #'s in them
Change
<input type=radio value="a1" onClick="Engine(1, this.value)" name>Sierra On-Line<br>
<input type=radio value="b1" onClick="Engine(1, this.value)" name>BlueByte<br>
<input type=radio value="c1" onClick="Engine(1, this.value)" name>Blizzard Entertainment<br>
<input type=radio value="d1" onClick="Engine(1, this.value)" name>Microsoft<p>
To
<input type=radio value="a" onClick="Engine(1, this.value)" name>Sierra On-Line<br>
<input type=radio value="b" onClick="Engine(1, this.value)" name>BlueByte<br>
<input type=radio value="c" onClick="Engine(1, this.value)" name>Blizzard Entertainment<br>
<input type=radio value="d" onClick="Engine(1, this.value)" name>Microsoft<p>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am trying to add a JavaScript quiz to my site that I got from a Javascript
| site. I copied the code into my site as directed. When I get the quiz
| working, I will reword the questions and answers. The quiz works some, but
| no answer returns a correct response. For example, the answer to question
| one is "c" but that returns an incorrect response. My quiz is shown at:
| http://www.allhikers.com/allhikers/Test-your-knowledge/Test-your-knowledge-1.htm
| A site with the same type of test that does work is:
| http://grandcanyontreks.org/quiz.htm.
|
| Thanks for any help.
| --
| Richard M. Perry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Take a shot at Mastermind 4
how do you make quizzes with timers on them? 6
javascript and FrontPage forms question 1
Help with project 3
Web Survey 4
Quiz test 2
Quiz Question 5
Phishing of Sites: 1

Top