This commit is contained in:
Logen
2025-09-26 21:29:41 -04:00
parent d55333a652
commit 7da034e08b
8 changed files with 174 additions and 93 deletions

View File

@@ -51,5 +51,16 @@
<a href="#top" title="Back to Top">🔝</a>
</div>
<script>
// --- 2. Dropdown navigation ---------------------------------------------
window.navigateToSection = function (select) {
const sectionId = select.value;
if (sectionId) {
const section = document.getElementById(sectionId);
if (section) {
section.scrollIntoView({ behavior: 'smooth' });
}
}
};</script>
</body>
</html>