A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/Sensor/error_event below:

Sensor: error event - Web APIs

Sensor: error event

Limited availability

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The error event is fired when an exception occurs on a sensor.

The Sensor interface is a base class, onerror and the error event may only be used on one of the derived classes.

After this event has occurred, the Sensor object becomes idle. If the sensor was reading values, it will stop until it restarts.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener("error", (event) => { })

onerror = (event) => { }
Event type Event properties

In addition to the properties listed below, properties from the parent interface, Event, are available.

error Read only

Returns the DOMException that has been thrown.

Examples Log accelerometer exceptions

This example adds an event listener to log errors occurred on an Accelerometer.

const acl = new Accelerometer({ frequency: 60 });
acl.addEventListener("error", (error) => console.log(`Error: ${error.name}`));
acl.start();
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4