Implementation methods
The following settings can be configured in the Implementation methods panel:
Global settings
Setting | Description |
---|---|
Page load enabled (Auto-create global mbox) | Select whether to embed the global mbox call in the at.js file to automatically fire on each page load. |
Global mbox |
Select a name for the global mbox. By default, this name is target-global-mbox. Special characters, including ampersands (&), can be used in mbox names with at.js. |
Timeout (seconds) |
If Target does not respond with content within the defined period, the server call times out and default content is displayed. Additional calls continue to be attempted during the visitor’s session. The default is 5 seconds. The at.js library uses the timeout setting in If the specified timeout occurs before receiving the response, default content is shown and the visitor might be counted as a participant in an activity because all data collection happens on the Target edge. If the request reaches the Target edge, the visitor is counted. Consider the following when configuring the timeout setting:
To get a better understanding of mbox response times, look at the Network tab in your browser’s Developer Tools. You can also use third-party web performance monitoring tools, such as Catchpoint. Note: The visitorApiTimeout setting ensures that Target doesn’t wait for the Visitor API response for too long. This setting and the Timeout setting for at.js described here do not affect each other. |
Profile Lifetime |
This setting determines how long visitor profiles are stored. By default, profiles are stored for two weeks. This setting can be increased up to 90 days. To change the Profile Lifetime setting, contact Client Care. |
Main implementation method
To download the desired at.js version, click the appropriate Download button.
To edit at.js setting, click Edit next to the desired at.js version.
In addition to the settings explained above, the following specific at.js settings are also available:
Setting | Description |
---|---|
Cross-Domain | For at.js v1.x, specify whether cross-domain capabilities are disabled (browsers set cookies in your domain (first-party cookies) only), x only (browsers set cookies in Target’s domain only), or both, by selecting enabled (browsers set both 1st and 3rd party cookies). For at.js v2.10 and later, specify whether cross-domain capabilities are enabled (browsers set both 1st and 3rd party cookies) or disabled (browsers do not set 3rd party cookies). |
Custom Library Header | Add any custom JavaScript to include at the top of the library. |
Custom Library Footer | Add any custom JavaScript to include at the bottom of the library. |
Profile API
Enable or disable authentication for batch updates via API and generate a profile authentication token.
For more information, see Profile API settings.
Debugger tools
Generate an authorization token to use advanced Target debugging tools. Click Generate New Authentication Token.
Privacy
These settings allow you to use Target in compliance with applicable data privacy laws.
Choose the desired setting from the Obfuscate Visitor IP address drop-down list:
- Last octet obfuscation
- Entire IP obfuscation
- None
For more information, see Privacy.
Download at.js
Instructions to download the library using the Target interface or the Download API.
Download at.js using the Target interface
To download at.js from the Target interface:
- Click Administration > Implementation.
- From the Implementation Methods section, click the Download button next to the desired at.js version.
Download at.js using the Target Download API
To download at.js using the API.
-
Get your client code.
Your client code is available at the top of the Administration > Implementation page of the Target interface.
-
Get your admin number.
Load this URL:
https://admin.testandtarget.omniture.com/rest/v1/endpoint/<varname>client code</varname>
Replace
client code
with the client code from Step 1.The result of loading this URL should look similar to the following example:
{ "api": "https://admin6.testandtarget.omniture.com/admin/rest/v1" }
In this example, “6” is the admin number.
-
Download at.js.
Load this URL with the following structure. Loading this URL starts the download of your customized at.js file.
https://admin<varname>admin number</varname>.testandtarget.omniture.com/admin/rest/v1/libraries/atjs/download?client=<varname>client code</varname>&version=<version number>
- Replace
admin number
with your admin number. - Replace
client code
with the client code from Step 1. - Replace
version number
with the desired at.js version number (for example, 2.2).
- Replace
at.js implementation
at.js should be implemented in the <head>
element of every page of your website.
A typical implementation of Target not using a tag manager, such as tags in Adobe Experience Platform looks like this:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Title of the Page</title>
<!--Preconnect and DNS-Prefetch to improve page load time-->
<link rel="preconnect" href="//<client code>.tt.omtrdc.net">
<link rel="dns-prefetch" href="//<client code>.tt.omtrdc.net">
<!--/Preconnect and DNS-Prefetch-->
<!--Data Layer to enable rich data collection and targeting-->
<script>
var digitalData = {
"page": {
"pageInfo": {
"pageName": "Home"
}
}
};
</script>
<!--/Data Layer-->
<!-- targetPageParams(), targetPageParamsAll(), Data Providers or targetGlobalSettings() functions to enrich the visitor profile or modify the library settings-->
<script>
targetPageParams = function() {
return {
"a": 1,
"b": 2,
"pageName": digitalData.page.pageInfo.pageName,
"profile": {
"age": 26,
"country": {
"city": "San Francisco"
}
}
};
};
</script>
<!--/targetPageParams()-->
<!--jQuery or other helper libraries should be implemented before at.js if you would like to use their methods in Target-->
<script src="jquery-3.3.1.min.js"></script>
<!--/jQuery-->
<!--Target's JavaScript SDK, at.js-->
<script src="at.js"></script>
<!--/at.js-->
</head>
<body>
The default content of the page
</body>
</html>
Consider the following important notes:
- The HTML5 Doctype (for example,
<!doctype html>
) should be used. Unsupported or older doctypes could result in Target not being able to make a request. - Preconnect and Prefetch are options that might help your web pages load faster. If you use these configurations, ensure that you replace
<client code>
with your own client code, which you can obtain from the Administration > Implementation page. - If you have a data layer, it is optimal to define as much of it as possible in the
<head>
of your pages before at.js loads. This placement provides the maximum ability to use this information in Target for personalization. - Special Target functions, such as
targetPageParams()
,targetPageParamsAll()
, Data Providers, andtargetGlobalSettings()
should be defined after your data layer and before at.js loads. Alternatively, these functions could be saved in the Library Header section of the Edit at.js Settings page and saved as part of the at.js library itself. For more information on these functions, see at.js functions. - If you use JavaScript helper libraries, such as jQuery, include them before Target so you can use their syntax and methods when building Target experiences.
- Include at.js in the
<head>
of your pages.
Track conversions
The Order Confirmation mbox records details about orders on your site and allows reporting based on revenue and orders. The Order Confirmation mbox can also drive recommendation algorithms, such as “People who bought product x also bought product y.”
-
In your order details page, insert the mbox script following the model below.
-
Replace the WORDS IN CAPITAL LETTERS with either dynamic or static values from your catalog.
TIP
You can also pass order information in any mbox (it does not need to be namedorderConfirmPage
). You can also pass order information in multiple mboxes within the same campaign.<script type="text/javascript"> adobe.target.trackEvent({ "mbox": "orderConfirmPage", "params":{ "orderId": "ORDER ID FROM YOUR ORDER PAGE", "orderTotal": "ORDER TOTAL FROM YOUR ORDER PAGE", "productPurchasedId": "PRODUCT ID FROM YOUR ORDER PAGE, PRODUCT ID2, PRODUCT ID3" } }); </script>
The Order Confirmation mbox uses the following parameters:
Parameter | Description |
---|---|
orderId |
Unique value to identify an order for conversion counting. The |
orderTotal |
Monetary value of the purchase. Do not pass the currency symbol. Use a decimal point (not a comma) to indicate decimal values. |
productPurchasedId (Optional) |
Comma-separated list of product IDs purchased in the order. These product IDs display in the audit report to support additional reporting analysis. |
Personalization & Experiementation Excellence with Recommendations and AI
Adobe Customer Success Webinars
Tuesday, Mar 4, 4:00 PM UTC
Adobe Target innovations, including GenAI, and best practices on AI-powered personalization and experimentation at scale.
RegisterAdobe Target at Summit
Register for these developer sessions:
- Put the Customer at the Center and Build Relationships That Last a Lifetime (attend online)
- Unlocking Digital Growth: Marriott’s Success with Adobe Experience Manager
- A Tax Transformation: How H&R Block and Adobe MarTech Improved Engagement
- Implement Adobe Target for Optimal Performance (hands-on lab)
- How Air India’s Digital Transformation Is Driving Business Turnaround
Connect with Experience League at Summit!
Get front-row access to top sessions, hands-on activities, and networking—wherever you are!
Learn more