Skip to content

Instantly share code, notes, and snippets.

@oconnoat
Created January 22, 2014 20:47
Show Gist options
  • Save oconnoat/8567083 to your computer and use it in GitHub Desktop.
Save oconnoat/8567083 to your computer and use it in GitHub Desktop.
simplest possible form with html speech input on webkit (or chrome at least, not sure how to do it in other browsers)
<!doctype html>
<html>
<head>
</head>
<body>
<form action="#" method="post">
<!-- chrome / webkit text-to-speech -->
<input type="text" x-webkit-speech />
<input type="submit" />
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment