error

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.

The error event of the Web Speech API SpeechSynthesisUtterance object is fired when an error occurs that prevents the utterance from being succesfully spoken.

Bubbles No
Cancelable No
Target objects SpeechSynthesisUtterance
Interface SpeechSynthesisErrorEvent

ExamplesEdit

utterThis.onerror = function(event) {
  console.log('An error has occurred with the speech synthesis: ' + event.error);
}

InheritanceEdit

The error event implements the SpeechSynthesisErrorEvent interface, which extends the SpeechSynthesisEvent interface, which in turn inherits from Event. It therefore has available the properties and methods defined on all these interfaces.

SpecificationsEdit

Specification Status Comment
Web Speech API
The definition of 'speech synthesis utterance events' in that specification.
Draft  

Browser compatibilityEdit

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 33 44 (44) [1] Not supported Not supported Not supported
  • [1] Can be enabled via the media.webspeech.synth.enabled flag in about:config.

See alsoEdit

Document Tags and Contributors

 Contributors to this page: chrisdavidmills
 Last updated by: chrisdavidmills,