When autocomplete results are available use up and down arrows to review and enter to select. Touch device users, explore by touch or with swipe gestures.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
Where do you live?
</h1></legend><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive"name="whereDoYouLive"type="radio"value="england"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive">
England
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-2"name="whereDoYouLive"type="radio"value="scotland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-2">
Scotland
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-3"name="whereDoYouLive"type="radio"value="wales"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-3">
Wales
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-4"name="whereDoYouLive"type="radio"value="northern-ireland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-4">
Northern Ireland
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
Use the radios component when users can only select one option from a list.
When not to use this component
Do not use the radios component if users might need to select more than one option. In this case, you should use the checkboxes component instead.
How it works
Always position radios to the left of their labels. This makes them easier to find, especially for users of screen magnifiers.
Unlike with checkboxes, users can only select one option from a list of radios. Do not assume that users will know how many options they can select based on the visual difference between radios and checkboxes alone.
If needed, add a hint explaining this, for example, ‘Select one option’.
Do not pre-select radio options as this makes it more likely that users will:
not realise they’ve missed a question
submit the wrong answer
Users cannot go back to having no option selected once they have selected one, without refreshing their browser window. Therefore, you should include ‘None of the above’ or ‘I do not know’ if they are valid options.
Order radio options alphabetically by default.
In some cases, it can be helpful to order them from most-to-least common options. For example, you could order options for ‘Where do you live?’ based on population size.
However you should do this with extreme caution as it can reinforce bias in your service. If in doubt, order alphabetically.
Group radios together in a <fieldset> with a <legend> that describes them, as shown in the examples on this page. This is usually a question, like ‘Where do you live?’.
If you’re asking one question on the page
If you are asking just one question per page as recommended, you can set the contents of the <legend> as the page heading. This is good practice as it means that users of screen readers will only hear the contents once.
There are 2 ways to use the radios component. You can use HTML or, if you are using Nunjucks or the GOV.UK Prototype Kit, you can use the Nunjucks macro.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
Where do you live?
</h1></legend><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive"name="whereDoYouLive"type="radio"value="england"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive">
England
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-2"name="whereDoYouLive"type="radio"value="scotland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-2">
Scotland
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-3"name="whereDoYouLive"type="radio"value="wales"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-3">
Wales
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-4"name="whereDoYouLive"type="radio"value="northern-ireland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-4">
Northern Ireland
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
If you’re asking more than one question on the page
If you’re asking more than one question on the page, do not set the contents of the <legend> as the page heading. Read more about asking multiple questions on question pages.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"><legendclass="govuk-fieldset__legend">
Where do you live?
</legend><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive"name="whereDoYouLive"type="radio"value="england"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive">
England
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-2"name="whereDoYouLive"type="radio"value="scotland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-2">
Scotland
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-3"name="whereDoYouLive"type="radio"value="wales"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-3">
Wales
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-4"name="whereDoYouLive"type="radio"value="northern-ireland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-4">
Northern Ireland
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"aria-describedby="changedName-hint"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
Have you changed your name?
</h1></legend><divid="changedName-hint"class="govuk-hint">
This includes changing your last name or spelling your name differently.
</div><divclass="govuk-radios govuk-radios--inline"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="changedName"name="changedName"type="radio"value="yes"><labelclass="govuk-label govuk-radios__label"for="changedName">
Yes
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="changedName-2"name="changedName"type="radio"value="no"><labelclass="govuk-label govuk-radios__label"for="changedName-2">
No
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
{% from"govuk/components/radios/macro.njk"import govukRadios %}
{{ govukRadios({
classes: "govuk-radios--inline",
name: "changedName",
fieldset: {
legend: {
text: "Have you changed your name?",
isPageHeading: true,
classes: "govuk-fieldset__legend--l"
}
},
hint: {
text: "This includes changing your last name or spelling your name differently."
},
items: [
{
value: "yes",
text: "Yes"
},
{
value: "no",
text: "No"
}
]
}) }}
Radio items with hints
You can add hints to radio items to provide additional information about the options.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"aria-describedby="signIn-hint"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
How do you want to sign in?
</h1></legend><divid="signIn-hint"class="govuk-hint">
You’ll need an account to prove your identity and complete your Self Assessment.
</div><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="signIn"name="signIn"type="radio"value="government-gateway"aria-describedby="signIn-item-hint"><labelclass="govuk-label govuk-radios__label"for="signIn">
Sign in with Government Gateway
</label><divid="signIn-item-hint"class="govuk-hint govuk-radios__hint">
You’ll have a user ID if you’ve registered for Self Assessment or filed a tax return online before.
</div></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="signIn-2"name="signIn"type="radio"value="govuk-one-login"aria-describedby="signIn-2-item-hint"><labelclass="govuk-label govuk-radios__label"for="signIn-2">
Sign in with GOV.UK One Login
</label><divid="signIn-2-item-hint"class="govuk-hint govuk-radios__hint">
If you don’t have a GOV.UK One Login, you can create one.
</div></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
{% from"govuk/components/radios/macro.njk"import govukRadios %}
{{ govukRadios({
name: "signIn",
fieldset: {
legend: {
text: "How do you want to sign in?",
isPageHeading: true,
classes: "govuk-fieldset__legend--l"
}
},
hint: {
text: "You’ll need an account to prove your identity and complete your Self Assessment."
},
items: [
{
value: "government-gateway",
text: "Sign in with Government Gateway",
hint: {
text: "You’ll have a user ID if you’ve registered for Self Assessment or filed a tax return online before."
}
},
{
value: "govuk-one-login",
text: "Sign in with GOV.UK One Login",
hint: {
text: "If you don’t have a GOV.UK One Login, you can create one."
}
}
]
}) }}
Radio items with a text divider
If one or more of your radio options is different from the others, it can help users if you separate them using a text divider. The text is usually the word ‘or’.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
Where do you live?
</h1></legend><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive"name="whereDoYouLive"type="radio"value="england"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive">
England
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-2"name="whereDoYouLive"type="radio"value="scotland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-2">
Scotland
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-3"name="whereDoYouLive"type="radio"value="wales"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-3">
Wales
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-4"name="whereDoYouLive"type="radio"value="northern-ireland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-4">
Northern Ireland
</label></div><divclass="govuk-radios__divider">or</div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-6"name="whereDoYouLive"type="radio"value="abroad"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-6">
I am a British citizen living abroad
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
{% from"govuk/components/radios/macro.njk"import govukRadios %}
{{ govukRadios({
name: "whereDoYouLive",
fieldset: {
legend: {
text: "Where do you live?",
isPageHeading: true,
classes: "govuk-fieldset__legend--l"
}
},
items: [
{
value: "england",
text: "England"
},
{
value: "scotland",
text: "Scotland"
},
{
value: "wales",
text: "Wales"
},
{
value: "northern-ireland",
text: "Northern Ireland"
},
{
divider: "or"
},
{
value: "abroad",
text: "I am a British citizen living abroad"
}
]
}) }}
Conditionally revealing a related question
You can ask the user a related question when they select a particular radio option, so they only see the question when it’s relevant to them.
This might make two related questions easier to answer by grouping them on the same page. For example, you could reveal a phone number input when the user selects the ‘Contact me by phone’ option.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"aria-describedby="contact-hint"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
How would you prefer to be contacted?
</h1></legend><divid="contact-hint"class="govuk-hint">
Select one option.
</div><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact"name="contact"type="radio"value="email"data-aria-controls="conditional-contact"><labelclass="govuk-label govuk-radios__label"for="contact">
Email
</label></div><divclass="govuk-radios__conditional govuk-radios__conditional--hidden"id="conditional-contact"><divclass="govuk-form-group"><labelclass="govuk-label"for="contact-by-email">
Email address
</label><inputclass="govuk-input govuk-!-width-one-third"id="contact-by-email"name="contactByEmail"type="email"spellcheck="false"autocomplete="email"></div></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact-2"name="contact"type="radio"value="phone"data-aria-controls="conditional-contact-2"><labelclass="govuk-label govuk-radios__label"for="contact-2">
Phone
</label></div><divclass="govuk-radios__conditional govuk-radios__conditional--hidden"id="conditional-contact-2"><divclass="govuk-form-group"><labelclass="govuk-label"for="contact-by-phone">
Phone number
</label><inputclass="govuk-input govuk-!-width-one-third"id="contact-by-phone"name="contactByPhone"type="tel"autocomplete="tel"></div></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact-3"name="contact"type="radio"value="text"data-aria-controls="conditional-contact-3"><labelclass="govuk-label govuk-radios__label"for="contact-3">
Text message
</label></div><divclass="govuk-radios__conditional govuk-radios__conditional--hidden"id="conditional-contact-3"><divclass="govuk-form-group"><labelclass="govuk-label"for="contact-by-text">
Mobile phone number
</label><inputclass="govuk-input govuk-!-width-one-third"id="contact-by-text"name="contactByText"type="tel"autocomplete="tel"></div></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
However, we found that screen reader users did not have difficulty answering a conditionally revealed question - as long it’s kept simple. Users we tested with did get confused when complicated questions were conditionally revealed to them, particularly questions with more than one part.
Use standard-sized radios in nearly all cases. However, smaller versions work well on pages where it’s helpful to make them less visually prominent.
For example, on a page of search results, the primary user need is to see the results. Using smaller radios lets users see and change search filters without distracting them from the main content.
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
<divclass="govuk-form-group govuk-form-group--error"><fieldsetclass="govuk-fieldset"aria-describedby="whereDoYouLive-error"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
Where do you live?
</h1></legend><pid="whereDoYouLive-error"class="govuk-error-message"><spanclass="govuk-visually-hidden">Error:</span> Select the country where you live
</p><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive"name="whereDoYouLive"type="radio"value="england"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive">
England
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-2"name="whereDoYouLive"type="radio"value="scotland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-2">
Scotland
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-3"name="whereDoYouLive"type="radio"value="wales"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-3">
Wales
</label></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="whereDoYouLive-4"name="whereDoYouLive"type="radio"value="northern-ireland"><labelclass="govuk-label govuk-radios__label"for="whereDoYouLive-4">
Northern Ireland
</label></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.
<divclass="govuk-form-group"><fieldsetclass="govuk-fieldset"aria-describedby="contact-hint"><legendclass="govuk-fieldset__legend govuk-fieldset__legend--l"><h1class="govuk-fieldset__heading">
How would you prefer to be contacted?
</h1></legend><divid="contact-hint"class="govuk-hint">
Select one option.
</div><divclass="govuk-radios"data-module="govuk-radios"><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact"name="contact"type="radio"value="email"checkeddata-aria-controls="conditional-contact"><labelclass="govuk-label govuk-radios__label"for="contact">
Email
</label></div><divclass="govuk-radios__conditional"id="conditional-contact"><divclass="govuk-form-group govuk-form-group--error"><labelclass="govuk-label"for="contact-by-email">
Email address
</label><pid="contact-by-email-error"class="govuk-error-message"><spanclass="govuk-visually-hidden">Error:</span> Email address cannot be blank
</p><inputclass="govuk-input govuk-!-width-one-half govuk-input--error"id="contact-by-email"name="contactByEmail"type="email"spellcheck="false"aria-describedby="contact-by-email-error"autocomplete="email"></div></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact-2"name="contact"type="radio"value="phone"data-aria-controls="conditional-contact-2"><labelclass="govuk-label govuk-radios__label"for="contact-2">
Phone
</label></div><divclass="govuk-radios__conditional govuk-radios__conditional--hidden"id="conditional-contact-2"><divclass="govuk-form-group"><labelclass="govuk-label"for="contact-by-phone">
Phone number
</label><inputclass="govuk-input govuk-!-width-one-third"id="contact-by-phone"name="contactByPhone"type="tel"autocomplete="tel"></div></div><divclass="govuk-radios__item"><inputclass="govuk-radios__input"id="contact-3"name="contact"type="radio"value="text"data-aria-controls="conditional-contact-3"><labelclass="govuk-label govuk-radios__label"for="contact-3">
Text message
</label></div><divclass="govuk-radios__conditional govuk-radios__conditional--hidden"id="conditional-contact-3"><divclass="govuk-form-group"><labelclass="govuk-label"for="contact-by-text">
Mobile phone number
</label><inputclass="govuk-input govuk-!-width-one-third"id="contact-by-text"name="contactByText"type="tel"autocomplete="tel"></div></div></div></fieldset></div>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as “Required” in the option description.
If you’re using Nunjucks macros in production with “html” options, or ones ending with “html”, you must sanitise the HTML to protect against cross-site scripting exploits.
Primary options
Name
Type
Description
fieldset
object
The fieldset used by the radios component.
See fieldset.
hint
object
Can be used to add a hint to the radios component.
See hint.
errorMessage
object
Can be used to add an error message to the radios component. The error message component will not display if you use a falsy value for errorMessage, for example false or null.
See errorMessage.
formGroup
object
Additional options for the form group containing the radios component.
See formGroup.
idPrefix
string
Optional prefix. This is used to prefix the id attribute for each radio input, hint and error message, separated by -. Defaults to the name option value.
name
string
Required.
Name attribute for the radio items.
items
array
Required.
The radio items within the radios component.
See items.
value
string
The value for the radio which should be checked when the page loads. Use this as an alternative to setting the checked option on each individual item.
classes
string
Classes to add to the radio container.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for formGroup object
Name
Type
Description
classes
string
Classes to add to the form group (for example to show error state for the whole group).
attributes
object
HTML attributes (for example data attributes) to add to the form group.
beforeInputs
object
Content to add before all radio items within the checkboxes component.
See formGroup beforeInputs.
afterInputs
object
Content to add after all radio items within the checkboxes component.
See formGroup afterInputs.
Options for formGroup beforeInputs object
Name
Type
Description
text
string
Required.
Text to add before all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add before all radio items. If html is provided, the text option will be ignored.
Options for formGroup afterInputs object
Name
Type
Description
text
string
Required.
Text to add after all radio items. If html is provided, the text option will be ignored.
html
string
Required.
HTML to add after all radio items. If html is provided, the text option will be ignored.
Options for items array objects
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within each radio item label. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within each radio item label. If html is provided, the text option will be ignored.
id
string
Specific ID attribute for the radio item. If omitted, then idPrefix string will be applied.
value
string
Required.
Value for the radio input.
label
object
Subset of options for the label used by each radio item within the radios component.
See items label.
hint
object
Can be used to add a hint to each radio item within the radios component.
See hint.
divider
string
Divider text to separate radio items, for example the text "or".
checked
boolean
Whether the radio should be checked when the page loads. Takes precedence over the top-level value option.
conditional
object
Provide additional content to reveal when the radio is checked.
See items conditional.
disabled
boolean
If true, radio will be disabled.
attributes
object
HTML attributes (for example data attributes) to add to the radio input tag.
Options for items label component
Name
Type
Description
classes
string
Classes to add to the label tag.
attributes
object
HTML attributes (for example data attributes) to add to the label tag.
Options for items conditional object
Name
Type
Description
html
string
Required.
The HTML to reveal when the radio is checked.
Options for hint component
Name
Type
Description
text
string
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
html
string
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
id
string
Optional ID attribute to add to the hint span tag.
classes
string
Classes to add to the hint span tag.
attributes
object
HTML attributes (for example data attributes) to add to the hint span tag.