Disable turbolinks on specific links

suggest change

It is very easy to disable turbolinks on specific links. According to the official turbolinks documentation:

Turbolinks can be disabled on a per-link basis by annotating a link or any of its ancestors with data-turbolinks=“false”.

Examples:

// disables turbolinks for this one link
<a href="/" data-turbolinks="false">Disabled</a>

// disables turbolinks for all links nested within the div tag
<div data-turbolinks="false">
  <a href="/">I'm disabled</a>
  <a href="/">I'm also disabled</a>
</div>

// re-enable specific link when ancestor has disabled turbolinks
<div data-turbolinks="false">
  <a href="/">I'm disabled</a>
  <a href="/" data-turbolinks="true">I'm re-enabled</a>
</div>

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Turbolinks:
*Disable turbolinks on specific links

Table Of Contents
55CSV
62Turbolinks