var recognition = new webkitSpeechRecognition();
recognition.onresult = function (event) {
if (event.results.length > 0) {
q.value = event.results[0][0].transcript;
//q.form.submit();
}
}
I have tried this above code
I implemeted the following plugin in congig.xml
is that correct?
Logesh PalaniPosted Aug 18, 2018, 12:07 PM