Check and Delete All Ungraded Submitted Essays with Score 0


allInputNodeList = document.querySelectorAll('input[type="number"]');
for (var i=0;i<allInputNodeList.length; i++){
if (allInputNodeList[i].value == 0){
var inputName = allInputNodeList[i].name;
var checkboxName = inputName.replace("essay_points","cb-select-");
checkboxName = checkboxName.replace("[","");
checkboxName = checkboxName.replace("]","");
document.getElementById(checkboxName).checked = true;
}
}


Posted

in

, ,

by

Tags: