top of page
bottom of page
document.addEventListener('DOMContentLoaded', function() {
const scheduleNowButton = document.getElementById('SCHEDULENOW1');
if (scheduleNowButton) {
scheduleNowButton.addEventListener('click', function() {
if (typeof gtag === 'function') {
gtag('event', 'schedulenow1clicked', {
'event_category': 'schedulenow',
'event_label': 'SCHEDULENOW1 Click'
});
} else if (typeof ga === 'function') { // For older Universal Analytics (less likely now, but included for broader compatibility)
ga('send', 'event', 'schedulenow', 'SCHEDULENOW1 Click', 'Click');
}
});
} else {
console.warn('Button with ID "SCHEDULENOW1" not found.');
}
});