Firefox Tomorrow

web api instance property

HIDInputReportEvent: reportId property

View on MDN ↗

Secure contextLimited availabilityAvailable in workers

The reportId property of the HIDInputReportEvent interface returns the one-byte identification prefix for this report, or 0 if the HID interface does not use report IDs.

Value

A one-byte identification prefix.

Examples

In the following example the reportId of an incoming input report is logged to the console.

device.addEventListener("inputreport", (event) => {
  const { data, device, reportId } = event;
  console.log(reportId);
});

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.