Page-related tags
From Genesys Documentation
This topic is part of the manual Event tracking with tag managers for version Current of Genesys Predictive Engagement.
Contents
Page-related tags
Record a custom web event when a visitor hesitates on a page for more than 60 seconds
If a timeout completes on a page, this tag records a custom web event.
Tag
ac('dom', 'ready', function () {
setTimeout(function(){
ac('record', 'timeout-60', 'Hesitate On Page');
}, 60000);
});