top of page
Home
Codici
DigitalGuide
DigitalGuide
DigitalGuide
DigitalGuide
DigitalGuide
DigitalGuide
DigitalGuide
DigitalGuide
TreasureHuntAnimals
step1
step2
step3
step4
step5
step6
step7
step8
Blog
Untitled
Untitled
Untitled
Untitled
Your stay
Untitled
Guida dell'appartamento
Mappe
Informazioni essentiali
Untitled
Audio guides
In che zona ci troviamo
Cucina locale
Untitled
Fuori casa
Giubileo 2025
Vita diurna e notturna
Monumenti intorno a te
Subscribe
Install this guide as an app!Tap your browser menu and select “Add to Home screen
How can we do better next time?
Normal Text
Title
Subtitle
Normal Text
Any image or videos?
Upload Images
audio
Upload Audios
Get Exclusive Offers
Enter Your Email
Subscribe Now
Stay Updated
bottom of page
document.addEventListener("DOMContentLoaded", function () { let searchBox = document.getElementById('searchBox'); searchBox.addEventListener('keyup', function () { let input = searchBox.value.toLowerCase(); let sections = document.querySelectorAll('.guide-section'); sections.forEach(section => { let text = section.innerText.toLowerCase(); if (text.includes(input)) { section.style.display = "block"; // Show matching sections } else { section.style.display = "none"; // Hide non-matching sections } }); }); }); document.addEventListener("DOMContentLoaded", () => { // Apri e chiudi il menu const menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { item.querySelector(".menu-item-header").addEventListener("click", () => { menuItems.forEach(i => { if (i !== item) i.classList.remove("active"); }); item.classList.toggle("active"); }); }); // Funzione di ricerca nel menu const searchBox = document.getElementById("searchBox"); if (searchBox) { searchBox.addEventListener("keyup", function () { let input = this.value.toLowerCase(); let menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { let title = item.querySelector(".menu-item-header span").innerText.toLowerCase(); let content = item.querySelector(".menu-item-content").innerText.toLowerCase(); if (title.includes(input) || content.includes(input)) { item.style.display = "block"; } else { item.style.display = "none"; } }); }); } });