Currently, I am working with some HTML5 code:
<li class="tile google" data-target-activation="click" data-target="loading">
<div>
<a href="#">Search Google</a>
<h2>Google</h2>
</div>
</li>
Upon clicking the link, it directs users to a "loading" page using the
data-target="loading"
attribute. This allows for smooth transition to the loading page.
I am now looking to add a hyperlink that will smoothly transition to the loading screen and then redirect to a blog within my website. How can I achieve this?
EDIT: Can we implement a response.redirect function within the form element?