web api instance method
XMLHttpRequest: setAttributionReporting() method
Secure context
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.
Syntax
setAttributionReporting(options)
Parameters
options- : An object providing attribution reporting options, which includes the following properties:
eventSourceEligible- : A boolean. If set to
true, the request’s response is eligible to register an attribution source. If set tofalse, it isn’t.
- : A boolean. If set to
triggerEligible- : A boolean. If set to
true, the request’s response is eligible to register an attribution trigger. If set tofalse, it isn’t.
- : A boolean. If set to
- : An object providing attribution reporting options, which includes the following properties:
Return value
None (undefined).
Exceptions
InvalidStateErrorDOMException- : Thrown if the associated
XMLHttpRequesthas not yet beenopened, or has already beensent.
- : Thrown if the associated
TypeErrorDOMException- : Thrown if use of the Attribution Reporting API is blocked by an
attribution-reportingPermissions-Policy.
- : Thrown if use of the Attribution Reporting API is blocked by an
Examples
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);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.