function scrollToSection() { // Change the URL to the desired page window.location.href = "https://www.oslomediq.no/booking"; // After navigating to the new page, scroll to a specific section // You can use the hash of the section you want to scroll to window.addEventListener("DOMContentLoaded", function() { setTimeout(function() { // Add a delay to ensure the page has loaded window.scrollTo({ top: document.getElementById("html1").offsetTop, // Replace "sectionId" with the id of your target section behavior: "smooth" // Smooth scrolling }); }, 500); // Adjust the delay as needed }); }