CoolFace
Apppublic

murad1984/yafran-electrahub

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
script.js17 linesDownload Raw Back to root
1 2// Simple JavaScript for basic functionality3document.addEventListener('DOMContentLoaded', function() {4    console.log('Website loaded');5    6    // Mobile menu toggle would go here7    // Example:8    /*9    const menuButton = document.querySelector('.menu-button');10    const nav = document.querySelector('nav');11    12    menuButton.addEventListener('click', function() {13        nav.classList.toggle('show');14    });15    */16});17