How to create a back to previous page button in Elementor/ WordPressBy Aditya Yadav / 19/01/2025 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> Copy Code Snippet <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#go-back').on('click', function() { window.history.go(-1); return false; }); }); </script>