PDA

View Full Version : x-webkit-speech "Chrome"


yeppuda
05-18-2013, 11:44 AM
Hi,
I'm soorryy my english... little...

i have got vbulletin 3.8.6.

I want to voice input messagetextarea....

that codes:

<html>
<head>
<script type="text/javascript">
function voiceInputOver(val){
alert("Voice input is complete");
alert("Your input is " + val);
}
</script>

</head>
<body>
<input onwebkitspeechchange="voiceInputOver(this.value)" x-webkit-speech />
</body>
</html>

that code---> header or headinclude:

<script type="text/javascript">
function voiceInputOver(val){
alert("Voice input is complete");
alert("Your input is " + val);
}
</script>

but , where i puts "<input onwebkitspeechchange="voiceInputOver(this.value)" x-webkit-speech />" ??
thanks...

source: this (http://nways2it.blogspot.com/2013/04/speech-input-box-with-html.html).