So I've got this :
<table id="table2" border="1">
<tr>
<td id="table2"><center><B>A</B></center></td>
<td id="table2"> <span id="clicks"> 0</span></td>
<td id="table2"><center><B>B</B></center></td>
<td id="table2"><span id="clicksb"> 0</span></td>
<td id="table2"><center><B>C</B></center></td>
<td id="table2"><span id="clicksc"> 0</span></td>
<td id="table2"><center><B>D</B></center></td>
<td id="table2"><span id="clicksd"> 0</span></td>
</tr>
and a lot of tables that add a +1 to those zeros, depending if you choose the option A,B,C or D in any of those, I don't know how to just be able to choose one option of the ones available on the "imaginary" table, as well as being able to choose between those options and give add or remove that +1 depending on the choice.
https://codepen.io/holajosd/pen/bQapaB is the result of my actual work
I only managed to be able to select the options (buttons) and make them add a +1 to their "clicks, clicksb.... " id.
So in resume I need something that makes a person able to click only one of the buttons at the same time, but be able to click another button, this action unblock the last button from the same table and dont count that +1 to the final counter (or do a -1 to make it equal), hope I expressed myself.