- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
10-10-2019 02:07 AM
10-14-2019 01:59 AM
Hi @Ankitajaiswal ,
You will need to add a new listener to the html element for the drop event.
I would suggest following this approach https://community.tealiumiq.com/t5/Tealium-iQ-Tag-Management/Is-it-possible-to-track-drag-n-drop-wit...
10-22-2019 07:14 PM - edited 10-22-2019 07:23 PM
If you use jQuery on your site, you could take advantage of the ajaxComplete event to send tracking as a callback.
jQuery(document).on('ajaxComplete', function(event, state, uri) { var url = uri.url; if (state.readyState == "4" && url.indexOf("your/endpoint") > -1) { utag.link({ "event_category": "file_upload", "event_label": "profile_image", "event_value": "file.js" }); } });
Something along these lines will send a link event each time a file_upload ajax request is detected.
Hope that helps
Copyright All Rights Reserved © 2008-2023