@developers, @Tealium - Some of our .aspx web pages are currently setup to fire utag.link events directly from the page for Google Analytics- UA tag. These events are working perfectly and fired based on the UA tag. Example below: $(document).ready(function() {
$('#global-msg-title').on('click', function() {
if (window.utag) {
utag.link({ _ga_category: 'global_notification', _ga_action: 'viewed_messages', _ga_label: 'notification' });
}
});
}); Now we would like to convert these existing onpage events to be setup amd migrated to GA4. What are the steps we need to follow, please advise ? 1. Custom Event and the parameters are setup in GA4 Property. 2. GA4 tag was setup in Tealium IQ. 3. on page implementation setup to fire the event in GA4 is not working. $(document).ready(function() {
$('#global-msg-title').on('click', function() {
if (window.utag) {
utag.link({ tealium_event: 'global_notification', _ga4_param1: 'viewed_messages', _ga4_param2: 'notification' });
}
});
});
... View more