Been a while since I last did JavaScript, but school forced us into a JavaScript project. So here I am, making a simple quiz game. Coming along quite nicely, yet I'm experiencing issues with probably something terribly simple.
var useranswers = new Array();
var imgArray = new Array();
var answered = 0;
var currentQuestion = 0;
function renderQuizViaArray()
{
document.writeln('<h1>' + questions[currentQuestion] + '</h1>');
for(i=0; i < choices[currentQuestion].length; i++)
{
document.writeln('<input type="radio" name="answer_' + currentQuestion + '" value="1" id="answer_' + currentQuestion + '_' + i + '" class="question_' + currentQuestion + '" onclick="submitAnswer(' + currentQuestion + ', this, \'question_' + currentQuestion + '\', \'label_' + currentQuestion + '_' + i + '\')" /><label id="label_' + currentQuestion + '_' + i + '" for="answer_' + currentQuestion + '_' + i + '"> ' + choices[currentQuestion][i] + '</label><br />');
}
document.write('<input type="submit" value="NEXT" onclick="nextQuestion()" />');
}
function nextQuestion()
{
currentQuestion++;
renderQuizViaArray();
}
Whenever I click the "NEXT" button, it loads the second question (Element[1]) from an Array as well as the answers of another Array onto the screen. But the page remains in an infinite loading state and Firebug gives the message: "Reload to activate window console"
Anyone?
document.writeIf you must, simply concatenate that HTML to the body tag'sinnerHTMLproperty value. Also, that isn't an infinite loop. – Asad Nov 20 '12 at 9:06choices[currentQuestion]? Shouldn't that bei < choices.length? It's probably that for loop generating a infinite loop. @Asad Aside from the fact thatinnerHTMLis evil, too ;) – Cerbrus Nov 20 '12 at 9:06choices[index]is an array (or anything else with a length), everything is fine. In fact, there won't be an infinite loop even if there is no length property, becausei<undefined == truefor all integers. – Asad Nov 20 '12 at 9:08