This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The setAttributionReporting() method of the XMLHttpRequest interface indicates that you want the request's response to be able to register a JavaScript-based attribution source or attribution trigger.
See the Attribution Reporting API for more details.
setAttributionReporting(options)
optionsAn object providing attribution reporting options, which includes the following properties:
eventSourceEligibleA boolean. If set to true, the request's response is eligible to register an attribution source. If set to false, it isn't.
triggerEligibleA boolean. If set to true, the request's response is eligible to register an attribution trigger. If set to false, it isn't.
None (undefined).
InvalidStateError DOMException
Thrown if the associated XMLHttpRequest has not yet been opened, or has already been sent.
TypeError DOMException
Thrown if use of the Attribution Reporting API is blocked by a attribution-reporting Permissions-Policy.
const attributionReporting = {
eventSourceEligible: true,
triggerEligible: false,
};
function triggerSourceInteraction() {
const req = new XMLHttpRequest();
req.open("GET", "https://shop.example/endpoint");
// Check availability of setAttributionReporting() before calling
if (typeof req.setAttributionReporting === "function") {
req.setAttributionReporting(attributionReporting);
req.send();
} else {
throw new Error("Attribution reporting not available");
// Include recovery code here as appropriate
}
}
// Associate the interaction trigger with whatever
// element and event makes sense for your code
elem.addEventListener("click", triggerSourceInteraction);
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
setAttributionReporting |
125 | 125 | No | 111 | No | 125 | No | 83 | No | 27.0 | 125 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/setAttributionReporting