Send data to Adobe after an AJAX event
We have a page with following code
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src='https://assets.adobedtm.com/1234567/satelliteLib-1234'></script>
</head>
<body>
......
<script type="text/javascript">_satellite.pageBottom();</script>
</body>
</html>
What I understand from _satellite.pageBottom() function is that it sends the DTM data set via JS from browser after the page is loaded, which is working as expected.
Now, we have a requirement where we need to send some data to Adobe after an AJAX event is triggered. We are unable to find which event to trigger to send this data to Adobe. Any idea how should we go about it ?