If you add x-webkit-speech attribute to an input box; a microphone / mic / mike icon appears in the input box. Clicking on this icon activates voice recognition. But mic speech input is not allowed in TEXTAREA element. However, with a bit of CSS and JavaScript –you can design a textarea element with speech input. Here is how you can do it: First of all, add an INPUT box and a TEXTAREA box in your page. Speech enable the input box with x-webkit-speech Now you need to stylize the input box so as to make the borders disappear, reduce its size and then position it just to the right of textarea (to imitate placement of mic icon in input box). Here is CSS for doing this: You got the trick? We will accept speech input in the usual input box, and then, once the speech input is recognized and converted into text, we will transfer text from input to TEXTAREA. So, in the end, all we need to do is to transfer the text from input to textarea. This can be easily done with JavaScript: Key in this idea is the onwebkitspeechchange event that takes place when there is a change in x-webkit-speech enabled input box (i.e. when you speak and text gets converted into text in the input box). It was PHPied that published this idea originally. Please feel free to let me know if you have any questions about this topic. I will be happy to try and help you. Thank you for using TechWelkin. Comment * Name * Email * Website

Δ

How to Add Mic Speech Input Icon in a TEXTAREA - 77How to Add Mic Speech Input Icon in a TEXTAREA - 30