Interactive Quiz with Multimedia

INTERACTIVE

Interactive Quiz Creator

Create Your Quiz

Quiz Preview

Export Your Quiz

\n`; html += ``; quizHtmlOutput.value = html; quizExportResult.style.display = 'block'; }); // Copy quiz to clipboard function copyQuizToClipboard() { quizHtmlOutput.select(); document.execCommand('copy'); alert('Quiz HTML copied to clipboard!'); } // Check answer function for preview window.checkAnswer = function(qIndex, btn) { const selected = document.querySelector(`input[name="q${qIndex}"]:checked`); const feedback = document.getElementById(`feedback${qIndex}`); if (!selected) { feedback.style.display = 'block'; feedback.innerHTML = '

Please select an answer!

'; return; } const isCorrect = selected.id === `q${qIndex}o${quizQuestions[qIndex].correctAnswer}`; feedback.style.display = 'block'; feedback.innerHTML = isCorrect ? '

Correct! Well done!

' : '

Incorrect. Try again!

'; };

Post a Comment

0 Comments