Example Quiz 1
/****************************************************************************
author: Ranvijay Singh
Feel free to use this code for educational/non-profit purposes only.
****************************************************************************/
//feel free to change this color to a hex code or recognized color name
var highlightColor = "#00ff00";
//this should not be changed
function checkQuestionDropDown(selectGroup) {
if (selectGroup[selectGroup.selectedIndex].value == "correct") {
return 1;
}
else {
return...