var QueryString = function () { // This function is anonymous, is executed immediately and // the return value is assigned to QueryString! var query_string = {}; var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i -1) { element.className = element.className.replace("hide", "show"); } } function get_answer(id) { var showSolutionButton = document.getElementById("showSolution_" + id); showSolutionButton.disabled = true; show_solution(id); var answerRequest=new ajaxRequest() answerRequest.onreadystatechange=function(){ if (answerRequest.readyState==4){ if (answerRequest.status==200 || window.location.href.indexOf("http")==-1){ parseResponse(id, answerRequest.responseText); setButtonToNext(id); } else{ alert("Sorry, sending your answer was not successful!"); } } } var questionId=encodeURIComponent(id); var token=encodeURIComponent(QueryString.token); var answers=encodeURIComponent(JSON.stringify(getCheckboxAnswers(id))); answerRequest.open("GET", "/api?id="+questionId+"&token="+token+"&answers="+answers, true) answerRequest.send(null) } function setButtonToNext(id) { button = document.getElementById('showSolution_' + id); button.className = button.className.replace("show", "hide"); if(getNextQuestion(id)) { button = document.getElementById('next_' + id); button.className = button.className.replace("hide", "show"); } } function scrollToNextQuestion(id) { var nextQuestion = getNextQuestion(id); if(nextQuestion) { location.href = "#" + nextQuestion.id; } } function getNextQuestion(id) { var questions = document.getElementsByName("question"); for(var i = 0; i < questions.length; i++) { if(questions[i].id == "question_" + id) { return questions[i+1]; } } return null; } function getCheckboxAnswers(id) { var answers = []; var elements = document.getElementsByName("checkbox_" + id); for(var i = 0; i < elements.length; i++) { if(elements[i].checked) { answers.push(parseInt(elements[i].value)); } } return answers; } function parseResponse(id, responseText) { var correctOptions = JSON.parse(responseText).options_id; var progress = JSON.parse(responseText).progress; setCorrectOptions(correctOptions, id) setProgress(progress) } function setCorrectOptions(correctOptions, id) { var elements = document.getElementsByName("checkbox_" + id); var holders = document.getElementsByName("checkbox_div_" + id); for(var i = 0; i < elements.length; i++) { var element = elements[i]; var holder = holders[i]; var correct = isCorrectOption(element.value); if(correct) { holder.className = holder.className + " list-group-item-success"; } else { if(element.checked) { holder.className = holder.className + " list-group-item-danger";; } } element.disabled = true; } function isCorrectOption(option) { for(var i = 0; i < correctOptions.length; i++) { if(correctOptions[i] == option) { return true; } } return false; } } function setProgress(progress) { progressbar = document.getElementById("progressbar"); progressbar.style.width = progress + "%"; } function ajaxRequest() { var activexmodes=["Msxml2.XMLHTTP", "Microsoft.XMLHTTP"] //activeX versions to check for in IE if (window.ActiveXObject){ //Test for support for ActiveXObject in IE first (as XMLHttpRequest in IE7 is broken) for (var i=0; i