Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var quiz = [
"Albert Einstein",
"Ralph Waldo Emmerson"
],
"correct" : "Albert Einstein",
"correct" : "2",
"explanation" : "Albert Einstein drafted the special theory of relativity in 1905.",
},
{
Expand All @@ -32,7 +32,7 @@ var quiz = [
"Benjamin Franklin",
"Abraham Lincoln"
],
"correct" : "Thomas Jefferson",
"correct" : "0",
"explanation" : "The two dollar bill is seldom seen in circulation. As a result, some businesses are confused when presented with the note.",
},
{
Expand All @@ -44,14 +44,14 @@ var quiz = [
"American Civil War began",
"Declaration of Independence"
],
"correct" : "American Civil War began",
"correct" : "2",
"explanation" : "South Carolina came under attack when Confederate soldiers attacked Fort Sumter. The war lasted until April 9th 1865.",
},

];
```

It's important that the correct answer match one of the choices _exactly_.
Correct is the index from list of 'choices'. Index starts from 0.

Images are optional, but you should keep the empty quotes. Every item must be proceeded by a comma except for the last item in a set.

Expand All @@ -66,7 +66,7 @@ To add an additional question, copy the entire curly bracket block:
"American Civil War began",
"Declaration of Independence"
],
"correct" : "American Civil War began",
"correct" : "2",
"explanation" : "South Carolina came under attack when Confederate soldiers attacked Fort Sumter. The war lasted until April 9th 1865.",
},
```
Expand Down
9 changes: 5 additions & 4 deletions quiz.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"Albert Einstein",
"Ralph Waldo Emmerson"
],
"correct" : "Albert Einstein",
"correct" : "2",
"explanation" : "Albert Einstein drafted the special theory of relativity in 1905.",
},
{
Expand All @@ -48,7 +48,7 @@
"Benjamin Franklin",
"Abraham Lincoln"
],
"correct" : "Thomas Jefferson",
"correct" : "0",
"explanation" : "The two dollar bill is seldom seen in circulation. As a result, some businesses are confused when presented with the note.",
},
{
Expand All @@ -60,7 +60,7 @@
"American Civil War began",
"Declaration of Independence"
],
"correct" : "American Civil War began",
"correct" : "2",
"explanation" : "South Carolina came under attack when Confederate soldiers attacked Fort Sumter. The war lasted until April 9th 1865.",
},

Expand Down Expand Up @@ -121,7 +121,8 @@
* @param {choice} number The li zero-based index of the choice picked
*/
function processQuestion(choice){
if(quiz[currentquestion]['choices'][choice] == quiz[currentquestion]['correct']){
correctanswer = quiz[currentquestion]['correct'];
if(quiz[currentquestion]['choices'][choice] == quiz[currentquestion]['choices'][correctanswer]){
$('.choice').eq(choice).css({'background-color':'#50D943'});
$('#explanation').html('<strong>Correct!</strong> ' + htmlEncode(quiz[currentquestion]['explanation']));
score++;
Expand Down