I created a speech recognition experiment here: http://jsfiddle.net/3Sm9R/3/ (only works in Chrome 11+)
However, the blinking cursor appears when the input is clicked. I want to hide it. What's the cleanest way to hide it?
I created a speech recognition experiment here: http://jsfiddle.net/3Sm9R/3/ (only works in Chrome 11+)
However, the blinking cursor appears when the input is clicked. I want to hide it. What's the cleanest way to hide it?
The cursor color follows the text color.. So when setting the color to transparent, the cursor will disappear.
<input type="text" style="color: transparent;" x-webkit-speech />
See this answer
Boils down to input[type=text]{ cursor: none; }
EDIT: looking at your jsfiddle, I now realize you are using the new speech input type, and this doesn't seem to work on that.