JavaScript Question

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
Back
Top