Mein Tages-Anker

Struktur gibt Sicherheit. Plane deinen Tag und erstelle deinen persönlichen Notfallplan. Ein Schritt nach dem anderen.

Privat & Sicher: Deine Pläne bleiben bei dir. Keine Speicherung, volle Kontrolle.
'); printWindow.document.close(); printWindow.print(); } else if (btnText.includes('Kopieren')) { navigator.clipboard.writeText(targetContainer.innerText); } else if (btnText.includes('Datei')) { const element = document.createElement('a'); const file = new Blob([targetContainer.innerText], {type: 'text/plain'}); element.href = URL.createObjectURL(file); element.download = "mein-tagesplan.txt"; document.body.appendChild(element); element.click(); } else if (btnText.includes('E-Mail')) { const subject = "Mein Tagesplan"; const body = encodeURIComponent(targetContainer.innerText); window.location.href = `mailto:?subject=${subject}&body=${body}`; } }); }); // 3. Smooth Scroll for "Back" or "Emergency" buttons const scrollButtons = document.querySelectorAll('button.emergency, button[class*="back"]'); scrollButtons.forEach(btn => { btn.addEventListener('click', () => { // Find target (simple heuristic) const emergencySection = document.querySelector('.neelix-emergency-section'); if(emergencySection) emergencySection.scrollIntoView({ behavior: 'smooth' }); }); }); });

Navigation