1
I need a function where selecting a checkbox is required. I have 6 checkboxes and user must select only one.
Ex:
<input type ="checkbox" name="xx"...>
<label for="xx".......>
<input type ="checkbox" name="xx"...>
<label for="xx".......>
Thanks
Then you must use
type="radio"
and nottype="checkbox"
, and you have to do the samename
to all 6– Sergio
http://answall.com/q/146567/129
– Sergio