// Defer the js until the page loads window.onload = function () { const images = document.querySelectorAll("img"); const lightbox = document.getElementById("lightbox"); const lightboxImg = document.getElementById("lightbox-img"); images.forEach((image) => { image.addEventListener("click", () => { // Don't expand the header if (image.classList.contains("eurolink-header")) { return; } lightboxImg.src = image.src; lightbox.style.display = "block"; document.body.style.overflow = "hidden"; }); }); lightbox.addEventListener("click", (event) => { if (event.target === lightbox) { lightbox.style.display = "none"; document.body.style.overflow = "auto"; } }); const backToTopBtn = document.getElementById("back-to-top-btn"); // Show the button after 20px of scroll window.onscroll = function () { if ( document.body.scrollTop > 500 || document.documentElement.scrollTop > 500 ) { backToTopBtn.style.display = "block"; } else { backToTopBtn.style.display = "none"; } }; backToTopBtn.addEventListener("click", () => { // document.body.scrollTop = 0; // for Safari // document.documentElement.scrollTop = 0; // for Chrome, Firefox, IE and Opera window.scrollTo({ top: 0, behavior: "smooth", }); }); };
top of page

Page Title

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.

Section Title

bottom of page