Skip to main content

Button

The Button Primitive on Page

A simple button for sending a form

In the properties, you can choose in what kind of tag the button will be displayed on the published site. You can also set the "disabled" state in the properties.

Available props#

Prop nameDescription
typeHTML element that will be used in the document: submit, button or link
disabledFlag indicating whether the button is locked or not
hrefSets the address to go to when the link is clicked
targetYou can define the window where the page opened by the link will be loaded:
โ€ƒ_self - loads the page into the current window;
โ€ƒ_blank - loads the page into a new browser window;
โ€ƒ_parent - loads the page into the frame parent. If there are no frames, this value works as _self;
โ€ƒ_top - cancels all frames and loads the page in the full browser window. If there are no frames, this value works as _self.