JSFiddle - React, Tailwind, and code Playground

by eddturtle

HTML

<input 
    type="text"
    onspeechchange="sayThis(this.value)" 
    onwebkitspeechchange="sayThis(this.value)" 
    x-webkit-speech speech />

CSS

input
{
    padding: 3px 5px;
}

JavaScript

function sayThis(speech)
{
    alert("You Said: " + speech);
}