Forum Discussion
PamI-Am
11 years agoCommunity Member
Review quiz without "Incorrect/Correct"
Hi,
I have ticked "Allow user to review quiz", I do not want participants to see "correct/incorrect" at the bottom of the quiz questions (all multiple choice). However, "correct/incorrect" stil...
StephenKrasselt
3 years agoCommunity Member
This code will hide the checkmark showing the correct answer upon review. Trigger this JS on every question slide, using a variable to tell it whether to run or not
var myObj = document.getElementsByTagName("path")
for (var i=0;i<myObj.length;i++) {
for (var z=0;z<myObj[i].attributes.length;z++) {
if (myObj[i].attributes[z].value == "#6FBC67") {
myObj[i].style.visibility = "hidden"
break
}
}
}