Grouped radio buttons

Is it possible to make radio buttons in different groups? I tried to make 4 radio buttons, in a group of 2, which perform independently from each other, but It looks like i only can have 1 group, since i can only get 1 radio button selected at a time.

Hi,
you can use name-tag to group your radio buttons:

<input id="rbMoveTime" type="radio" name="para">

Just give the radio buttons you want to group the same name.

1 Like