Skip to content

HTML Radio Input

Handling Radio Buttons using FabForm In HTML, a radio button is used to select one of many given choices. Radio buttons with the same name property are grouped, forming a radio group.

You can simply submit radio input values using FabForm

The sample form should look like this:

<form action="https://fabform.io/f/{your-form-endpoint}" method="POST">
<input type="radio" name="gender" value="male" checked />
<input type="radio" name="gender" value="female" />
<input type="radio" name="gender" value="other" />
<button type="submit">Submit</button>
</form>

TIP

You should use the same name attribute for all the choices you are adding. Otherwise, your radio input selection won’t be submitted correctly.