Guillelfo's picture
<!DOCTYPE html>
82bd6ab verified
raw
history blame contribute delete
519 Bytes
document.addEventListener('DOMContentLoaded', () => {
// Initialize any global functionality here
console.log('ReadySetCode Wizardry initialized!');
// Example: Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});