I have several input fields of checkbox
referring to the interests of the client to mark it (Interest 1, 2, 3, ...), and another with option of All.
I want him to be forced to check one of these fields,
If I put required in a specific field, I force it to mark a field that would be optional.
So I can not put required in any input.
In this case the form is passing in submit without it dialing any, I wanted to oblige it at least to mark some.
If I put radio
, the problem is that he can only choose one option, but there are several that he can choose.
Would you have any solution to resolve this without using Javascript , only with HTML5 such as required ?