SpeechRecognitionErrorEvent: message property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
The message
read-only property of the
SpeechRecognitionErrorEvent
interface returns a message describing the
error in more detail.
Value
A string containing more details about the error that was raised. Note that the spec does not define the exact wording of these messages — this is up to the implementors to decide upon.
Examples
js
const recognition = new SpeechRecognition();
recognition.onerror = (event) => {
console.log(`Speech recognition error detected: ${event.error}`);
console.log(`Additional information: ${event.message}`);
};
Specifications
Specification |
---|
Web Speech API # dom-speechrecognitionerrorevent-message |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
message |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.