Report.url

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The url read-only property of the Report interface returns the URL of the document that generated the report.

Syntax

let reportURL = reportInstance.url

Returns

A string representing the URL of the document that generated the report.

Examples

let options = {
  types: ['deprecation'],
  buffered: true
}

let observer = new ReportingObserver(function(reports, observer) {
  let firstReport = reports[0];
  // Log the URL of the document that generated the first report
  // e.g. "https://www.example.com/cats.html"
  console.log(firstReport.url);
}, options);

Specifications

Specification Status Comment
Reporting API
The definition of 'Report.url' in that specification.
Editor's Draft

Browser compatibility

No compatibility data found. Please contribute data for "api.Report.url" (depth: 1) to the MDN compatibility data repository.

See also