Delay the Adobe Analytics call (after AJAX data is returned) | Community
Skip to main content
New Participant
October 16, 2015
Solved

Delay the Adobe Analytics call (after AJAX data is returned)

  • October 16, 2015
  • 5 replies
  • 5226 views

How can I make sure that the s.t() that is triggered by DTM by default is called only after data from AJAX becomes available? With s_code, we just simply called s.t() on AJAX success but I'm not sure how to achieve the same gracefully with DTM. The first thing I've tried is to call the _satellite.pageBottom() only on the AJAX success but I discovered that even complete removal of the _satellite.pageBottom() still doesn't prevent the default pageview DTM call (even though the DTM "Load library at" setting is "Page bottom").

Thank you in advance for any help.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Alexis_Cazes_

Hi Lukasz,

In the Adobe Analytics tool in DTM, you will have Customize Page Code. Select after UI settings and open editor.

Put the following code:

return false;

This will prevent the Adobe Analytics from firing the image request but it will initilize all of the variables.

The next step will be to create a direct call rule that will send an adobe analytics image request based on s.t().

Once the AJAX code finished to run call

_satellite.track("STRING OF DIRECT CALL RULL");

That will run the direct call rule and the image request will be sent. All of the Global variables declared in the Adobe Analytics tool should be present in the image request.

Please let me know if you have any issues.

 

Best regards.

 

Alexis Cazes.

Senior Technical Support Engineer

5 replies

New Participant
December 11, 2015

I just wanted to add my two cents:  This method worked for me as well. 

I did not have two server calls as Chad did.  Thanks for this answer Alexis!!

Alexis_Cazes_
Alexis_Cazes_Accepted solution
New Participant
October 16, 2015

Hi Lukasz,

In the Adobe Analytics tool in DTM, you will have Customize Page Code. Select after UI settings and open editor.

Put the following code:

return false;

This will prevent the Adobe Analytics from firing the image request but it will initilize all of the variables.

The next step will be to create a direct call rule that will send an adobe analytics image request based on s.t().

Once the AJAX code finished to run call

_satellite.track("STRING OF DIRECT CALL RULL");

That will run the direct call rule and the image request will be sent. All of the Global variables declared in the Adobe Analytics tool should be present in the image request.

Please let me know if you have any issues.

 

Best regards.

 

Alexis Cazes.

Senior Technical Support Engineer

New Participant
October 16, 2015

Alexis,

Could this method impact bounce rate since there will be 2 image calls? I did this setup on one of our sites and suddenly my bounce rate is in the low single digits. I'm not buying it.

Thanks!
Chad

lukeruAuthor
New Participant
October 16, 2015

Hi Alexis,

This looks like a good plan! Thank you very much. We will try it out.

Best regards,

Lukasz

lukeruAuthor
New Participant
October 16, 2015

I can confirm it worked. Thanks again Alexis.