Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let btn = document.getElementById("btn-result");
- let opt_1 = "{{exercise.opt_1}}"
- btn.addEventListener("click",get_result)
- function get_result(){
- const form = document.forms.quiz
- const radios = form.elements.name
- const checked = Array
- .from(radios)
- .find(radio => radio.checked).value;
- console.log(opt_1)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement