back-button
).</body>
tag section of Webflow’s Custom Code.document.referrer
; if the user came from the same domain, it uses window.history.back()
, otherwise, it redirects to a default page (e.g., "/homepage"
).To create a Back button in Webflow that checks if the user came from the same domain and redirects accordingly, use JavaScript. Here’s how:
back-button
).tag section.
<script>
tag:```javascript
document.addEventListener("DOMContentLoaded", function () {
var backButton = document.querySelector(".back-button");
if (backButton) {
backButton.addEventListener("click", function (event) {
event.preventDefault();
var referrer = document.referrer;
var currentDomain = window.location.hostname;
var defaultPage = "/homepage"; // Change to your desired fallback page
if (referrer && new URL(referrer).hostname === currentDomain) { window.history.back(); } else { window.location.href = defaultPage; } });}
});
```
"/homepage"
with the actual fallback URL you want users to be directed to.This script checks if the user came from the same domain using document.referrer
. If it's the same, it uses window.history.back()
; otherwise, it redirects to a specified default page.