This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WEBVTT | |
1 | |
00:00:00.000 --> 00:00:04.000 | |
Wow, a sweater. | |
2 | |
00:00:05.000 --> 00:00:08.000 | |
A very tiny sweater. With four arms. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (personality === true){ | |
// TALLY SUBMITTED ANSWERS FOR EACH CHARACTER FOR PERSONALITY QUIZ | |
$("input:radio").each( function() { | |
if($(this).prop("checked") === true) { | |
val = $(this).attr("class"); | |
// INCREASE PERSONALITYCOUNT FOR SELECTIONS | |
for (var i = 0; i < personalityOptions.length; i++) { | |
if (personalityOptions[i] === val){ |