Back Button
Please note that this is now available as a plugin for easier installation. While you can use this document as a reference, the recommended method to add this functionality is through the plugin installation wizard. Learn more about plugins here.
The following is a custom button and JavaScript solution to go back to a page according to the window history.
Step 1
Add a HTML Component. Within the source code <>, add the following code to create the button.
<p><button class="btn btn-primary back-btn">Back</button></p>
Step 2
In the JavaScript tab of your page add the following code.
$(’.back-btn’).on(‘click’,function(){
window.history.back();
});
Original Community Posts:
Has anyone created a back button that works? - Community Discussions / How Do I - Tadabase Community
We'd love to hear your feedback.