Limited availability
The error
event of the Web Speech API SpeechRecognition
object is fired when a speech recognition error occurs.
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.
SpeechRecognitionErrorEvent.error
Read only
Returns the type of error raised.
SpeechRecognitionErrorEvent.message
Read only
Returns a message describing the error in more detail.
You can use the error
event in an addEventListener
method:
const recognition = new webkitSpeechRecognition() || new SpeechRecognition();
recognition.addEventListener("error", (event) => {
console.error(`Speech recognition error detected: ${event.error}`);
});
Or use the onerror
event handler property:
recognition.onerror = (event) => {
console.error(`Speech recognition error detected: ${event.error}`);
};
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.3