Search code examples
htmlspeech-to-text

Speech to text button in textbox on a webpage


Is is possible to have a working Google speech to text button in a textbox on a webpage?

enter image description here

How can it be done?


Solution

  • it's an HTML5 thingy ...

    <input type="text" id="txtSearch" x-webkit-speech />
    

    so, will only work in available browsers.

    Live code: http://jsbin.com/afifaw/3

    enter image description here