error

Fires when a speech recognition error occurs.

Event Data

e.error String|Object

The error itself, which may be a string message or an error object depending on the browser and speech recognition engine.

Example

<button id="speechButton"></button>
<script>
    $("#speechButton").kendoSpeechToTextButton({
        error: function(e) {
            console.log(e.error);
        }
    });
</script>
In this article
error
Not finding the help you need?
Contact Support