WoohoOO00 I debugged your js and fixed it, you defined e but you don’t have any variable of e so you have to write this line:
var e=thisId;
in the function loadQuizzes
function loadQuizzes() {
$(“.fca_qc_quiz”).each(function(index) {
var thisId = get_quiz_id(this);
var e=thisId;
?? Cheers!!!