Is there a way to activate Siri from a webpage?

2.1k views Asked by At

Is there a way to trigger Siri from a webpage (perhaps using Javascript), to fill an input text field?

1

There are 1 answers

2
k-nut On BEST ANSWER

You probably cannot trigger Siri directly but you can use the x-webkit-speech html5 input type which will add the ability to use voice input:

<input type="text" x-webkit-speech>

It should be available in mobile safari as well: http://caniuse.com/#feat=web-speech

For more information you could e.g. refer to: http://blog.teamtreehouse.com/accepting-speech-input-html5-forms