Start your All-Access Pass to unlock this challenge
In our Turbo Frame with target="_top" we found that one of our links needed to load inside the frame, instead of reloading our whole page.
target="_top"
How can we achieve this?
<a href="{{ path('my_link') }}" target="my-frame">Link</a>
<a href="{{ path('my_link') }}" data-turbo-target="my-frame">Link</a>
<a href="{{ path('my_link') }}" data-target="my-frame">Link</a>
<a href="{{ path('my_link') }}" data-turbo-frame="my-frame">Link</a>