Scroll to an element with jQuery   <script type=”text/javascript”> jQuery(“.downarrow-go-down”).click(function() { jQuery([document.documentElement, document.body]).animate({ scrollTop: jQuery(“#pricing”).offset().top }, 2000); }); </script> Source: https://stackoverflow.com/questions/6677035/scroll-to-an-element-with-jquery

Make a redirect in PHP

May 25, 2022

Use the following code to Make a redirect in PHP header(“Location: https://example.com/myOtherPage.php”); die();