Back Button
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