
Lets start with a simple search bar.
<form action="/search" style="display:inline;" method="get">
<input name="q" size="40" type="text" placeholder=" Type!"/>
<input value="Search" type="submit"/>
</form>
This will create this simple search bar
But what if you add the voice recognizance in it.
Just add
x-webkit-speech="true"
in input tag
<form action="/search" style="display:inline;" method="get">This will create this.
<input type="text" name="q" size="30" x-webkit-speech="true"/>
<input value="Search" type="submit"/>
</form>
Post A Comment:
0 comments: