What this is?
jQuizMe is a webpage quiz generator. You can make the following types of
quizzes.
Fill In The Blank
Flash Cards
Multiple Choice (list or options tags)
True or False
Author : Larry Battle ->
contact
Version : 1.0 - First Release
Cross-broswer : works on IE6+, Opera, Firefox and Safari.
jQuizMe 2 is out --> jQuizMe 2
Demo
Demo4 Code:
Javascript
var quiz4 = [
{
"ques":"How many days are in a leap year?", "ans":"366 days",
"ansSel":["365 days", "364 days"]
},
{
"ques": "Which of these is a browser", "ans":"Flock"
}
];
var options = { "quizType": "multiplyChoice", "showWrongAns":true };
$( "#demo4" ).jQuizMe( quiz4, options);
HTML
<div id = "demo4"></div>
Tutorial:
How to make a quiz:
Step 1: A quiz starts out like this.
var quiz3 = [];
Step 2: Now let's make a blank question.
var quiz3 = [ { "ques":"", "ans":""} ];
Step 3: Next, fill the question and answer with information.
var quiz3 = [ { "ques":"2+2", "ans":"4"} ];
Step 4: Then to add a new question, add a comma to the end of the question format and repeat the first step.
var quiz3 = [ { "ques":"2+2", "ans":"4"}, { "ques":"2+1", "ans":"3"}];
Step 5: Lastly, add your options and you done!
Read the documentation for more information.
Demo3 Code:
Javascript
var quiz3 = [
{ "ques":"2+2", "ans":"4"}, // This is a quiz question.
{ "ques":"2+1", "ans":"3"}, // Another question.
{ "ques":"0+1", "ans":"1"} // And another.
];
$( "#demo3" ).jQuizMe( quiz3, { "quizType": "trueOrFalse" } );
HTML
<div id = "demo3"></div>