Firefox Tomorrow

web api instance property

HIDInputReportEvent: data property

View on MDN ↗

Secure contextLimited availabilityAvailable in workers

The data property of the HIDInputReportEvent interface returns a DataView containing the data from the input report, excluding the reportId if the HID interface uses report IDs.

Value

A DataView.

Examples

In the following example the returned data is logged to the console.

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

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.