I\'m not sure if this is the right site for this question, but I was wondering how the voice activated search on Google\'s homepage works. Does it use Flash, some kind of pl
A nice wrapper for the Web Speech API is available here: talater.com/annyang.
This library allows you to easily bind functions to voice commands, eg:
annyang.init({ "help": function() {$("#help").show();} }); annyang.start();