Help with js/jquery quiz
Help with js/jquery quiz
Out of context: Reply #2
- Started
- Last post
- 2 Responses
- LarryBattle0
Try jQuizMe.
I wrote and it solves a lot of problem with creating online quizzes.
http://code.google.com/p/jquizme…Hey Caoimh,
If you don't know want use jQuizMe then do this.
Note: This is assuming the checkbox positions are not randomized,- Make the answer to each questions, a letter. If multiple answer combine the letter with a "-".
- Name each question's answer selection checkbox in alphabethical order.
- Once the sumbit button is clicked, you call a functions that get's the names of the checked checkboxes and joins it into a string.So this way all the answers are strings.
ques[ quesindex ].ans = "A"; // one answer.
ques[ quesIndex ].ans = "A-B"; //multiple answers.