document.addEventListener(‘click’, function(e) {
var link = e.target.closest(‘a’);
if (link && link.href && link.href.indexOf(‘glossgenius.com’) !== -1) {
if (typeof gtag === ‘function’) {
gtag(‘event’, ‘book_now_click’, {
‘event_category’: ‘engagement’,
‘event_label’: ‘Book Now Button’
});
}
}
});