Question
How to count attempts in a Drag and Drop quiz
Hello! I need to count the attempts of each quiz. With the questions I found a solution, I use
getQuestionScoredPoints = function () {
var att = this.currentAttempt;
return att;
}
But for a Drag and Drop task, this doesn't work. Please tell me how you can count the attempts there?
