Button examples
-
# default
-
# disabled
-
# link
{ "text": "Link button", "href": "/" }{% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ "text": "Link button", "href": "/" }) }} -
# start
-
# input
-
# secondary
-
# warning
-
# inverse
-
# attributes
{ "element": "button", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }{% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ "element": "button", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }) }} -
# link attributes
{ "element": "a", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }{% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ "element": "a", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }) }} -
# input attributes
{ "element": "input", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }{% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ "element": "input", "text": "Submit", "attributes": { "aria-controls": "test-target-element", "data-tracking-dimension": 123 } }) }} -
# classes
-
# link classes
-
# input classes
-
# name
-
# type
-
# input type
-
# explicit link
-
# no href
-
# value
-
# html
-
# no type
-
# no data-prevent-double-click
-
# don't prevent double click
-
# id
-
# start link
{ "text": "Start now link button", "href": "/", "isStartButton": true }{% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ "text": "Start now link button", "href": "/", "isStartButton": true }) }} -
# input disabled
-
# prevent double click