Surventrix's picture
Create me a website for my company Surventrix, we specialise in providing technology to the residential surveying industry and our current website is www.surventrix.com. We have 2 products, Surveyors Hub and Surventrix Reports. A website that we like for th format of is zendesk.com
f60a56c verified
raw
history blame contribute delete
593 Bytes
// Main JavaScript file for global functionality
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle functionality will be handled by the navbar component
// Any global JavaScript functionality can go here
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});