Skip to content
Advertisement

DOM Quiz will give incorrect answers

I am learning DOM and wanted to create a simple JavaScript with Html quiz (for exercise). Now the problem I’m having is that when I hit submit, all of the answers are right instead of one being right and 3 being wrong. I think it is a problem with my html and the way I assigned the ID’s to the different tags but I cannot figure out what I am doing wrong.

Code

HTML

JavaScript

JavaScript

JavaScript

Thanks.

Advertisement

Answer

You can do this two ways

  1. get the selected value and see if it’s correct
  2. get the correct answer and see if it’s selected

The existing answer handles (1) so here’s the solution for the other option.

Taking your original code, change

JavaScript

to

JavaScript

(where grabAnswer is document.getElementById('red'))

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement