Skip to content
Advertisement

When I count box which are checked, it counts plus one box

My web-app is about forecasting on sports games. My page shows all the matches and the points you can get out of each outcome from a match (Madrid = 12 points VS Barcelone = 15 points). So a user check a box from a match and select for him the right outcome. I would like each time the user check a box, to show him the number of boxes he checked.

Here is my Javascript to count the box checked :

JavaScript

Here is the HTML where the number of box checked will be displayed

JavaScript

Here is my Javascript in order to know which game the user forecasted and which outcome he selected :

JavaScript

Here is my HTML, for each match I have in my database, a match is going to appear in front in this way.

JavaScript

There is a data-id. The purpose is when a user check a box, I can get the id of the match, in order to create the right forecast for the right game.

Advertisement

Answer

I would delegate instead of having inline event handlers

Here I COUNT the checkboxes – why do you not want the VALUE of a checked RADIO?

Note I wrapped all matches in <div id="matches">...</div>

JavaScript
JavaScript

Using Radios instead

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