Attributes and Meta Tags
﹟ Data Attributes
The following data attributes can be applied to elements to customize Turbo’s behaviour.
data-turbo="false"disables Turbo Drive on links and forms including descendants. To reenable when an ancestor has opted out, usedata-turbo="true". Be careful: when Turbo Drive is disabled, browsers treat link clicks as normal, but native adapters may exit the app. Note that if Turbo ignores a path, then settingdata-turbo="true"will not force/override it to enable.data-turbo-track="reload"tracks the element’s HTML and performs a full page reload when it changes. Typically used to keepscriptand CSSlinkelements up-to-date.data-turbo-track="dynamic"tracks the element’s HTML and removes the element when it is absent from an HTML response. Typically used to removestyleandlinkelements during navigation.data-turbo-frameidentifies the Turbo Frame to navigate. Refer to the Frames documentation for further details.data-turbo-preloadsignals to Drive to pre-fetch the next page’s contentdata-turbo-prefetch="false"disables prefetching links when the element is hovered.data-turbo-actioncustomizes the Visit action. Valid values arereplaceoradvance. Can also be used with Turbo Frames to promote frame navigations to page visits.data-turbo-permanentpersists the element between page loads. The element must have a uniqueidattribute. It also serves to exclude elements from being morphed when using page refreshes with morphingdata-turbo-temporaryremoves the element before the document is cached, preventing it from reappearing when restored.data-turbo-eval="false"prevents inlinescriptelements from being re-evaluated on Visits.data-turbo-methodchanges the link request type from the defaultGET. Ideally, non-GETrequests should be triggered with forms, butdata-turbo-methodmight be useful where a form is not possible.data-turbo-streamspecifies that a link or form can accept a Turbo Streams response. Turbo automatically requests stream responses for form submissions with non-GETmethods;data-turbo-streamallows Turbo Streams to be used withGETrequests as well.data-turbo-confirmpresents a confirm dialog with the given value. Can be used onformelements or links withdata-turbo-method.data-turbo-submits-withspecifies text to display when submitting a form. Can be used oninputorbuttonelements. While the form is submitting the text of the element will show the value ofdata-turbo-submits-with. After the submission, the original text will be restored. Useful for giving user feedback by showing a message like “Saving…” while an operation is in progress.downloadopts out of Turbo since the link is for downloading files and not navigation.
﹟ Automatically Added Attributes
The following attributes are automatically added by Turbo and are useful to determine the Visit state at a given moment.
disabledis added to the form submitter while the form request is in progress, to prevent repeat submissions.data-turbo-previewis added to thehtmlelement when displaying a preview during a Visit.data-turbo-visit-directionis added to thehtmlelement during a visit, with a value offorwardorbackornone, to indicate its direction.aria-busyis added to:- the
htmlelement when a visit is in progress - the
formelement when a submission is in progress. - the
turbo-frameelement when a visit or form submission is in progress within the frame.
- the
busyis added to theturbo-frameelement when a navigation or form submission is in progress within the frame.
﹟ Meta Tags
The following meta elements, added to the head, can be used to customize caching and Visit behavior.
<meta name="turbo-cache-control">to opt out of caching.<meta name="turbo-visit-control" content="reload">will perform a full page reload whenever Turbo navigates to the page, including when the request originates from a<turbo-frame>.<meta name="turbo-root">to scope Turbo Drive to a particular root location.<meta name="view-transition" content="same-origin">to trigger view transitions on browsers that support the View Transition API.<meta name="turbo-refresh-method" content="morph">will configure page refreshes with morphing.<meta name="turbo-refresh-scroll" content="preserve">will enable scroll preservation during page refreshes.<meta name="turbo-prefetch" content="false">will disable prefetching links on hover.