We are moving all tags to server side and we are working on POC for this. so we are using utag.link to fire facebook custom tags. Due to this adobe link click call is firing on normal click and also firing second adobe link click call from facebook logic. Because of adobe data will be duplicated on server side. So we want to remove duplicate link call before sending data into server side . kindly help us to fix this issue? example logic - $('button.register-button').on('click', function() {
if($('.parsley-errors-list.filled').length == 0){
utag.link({
"fb_event_name": 'view_content'
})
}
});
... View more