Create Dream Website

How to create a back to previous page button in Elementor/ WordPress

STEP 1
Find the Button widget in elementor

STEP 2:
Go to the Button widget’s Advanced tab, enter a name into the CSS ID eld, such as 'go-back'.

STEP 3:
Find the html widget in elementor

STEP 4:
Past this JavaScript:

JavaScript
<script type="text/javascript">
jQuery(document).ready(function() {
 jQuery('#go-back').on('click', function() {
 window.history.go(-1);
 return false;
 });
});
</script>

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top