Hello,
I’m a kind of novice in webDev. May I ask you help to do something please ?
I have multiple checkbox. I have to retrieve the value of the checkbox who will be checked. Sure I can not know which checkbox the user will check. Then my script has to retrieve which is checked.
Code exemple:
<input id="a" type="checkbox" value="a" onclick="getChecked()" />
<input id="b" type="checkbox" value="b" onclick="getChecked()" />
<input id="c" type="checkbox" value="c" onclick="getChecked()" />
I could tell you what I tried but I think what I’m asking is not so hard then maybe you could just tell me the solution if you could help me.
Thank you very much !