I need to use attribute name so I can use "name" attribute for radio button. I know that the code for radio button with exclusive choice is:
<input type="checkbox" name="radio">
<input type="checkbox" name="radio">
Anyone can help me to choice another method to render the radio with exclusive choice without name attribute?
name
for if it's not for grouping? If you need to distinguish the buttons in a group, you should use thevalue
for it. – Trinidadtrinitarian