Flatlogic Bot 8d996da0d9 sad
2026-02-23 09:05:29 +00:00

13 lines
472 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
console.log('AfgCars Premium Marketplace Initialized');
// 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'
});
});
});
});