Back to Content

HIDInputReportEvent: data property

files/en-us/web/api/hidinputreportevent/data/index.md

latest670 B
Original Source

{{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}}{{AvailableInWorkers("window_and_worker_except_shared")}}

The data property of the {{domxref("HIDInputReportEvent")}} interface returns a {{jsxref("DataView")}} containing the data from the input report, excluding the reportId if the HID interface uses report IDs.

Value

A {{jsxref("DataView")}}.

Examples

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

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

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}