
Hi All, Today we will discuss how to implement Voice Recognition on input text box. So I am writing this post to implement this feature on visualforce pages to get it better. So to understand this you need to have a knowledge on Javascript and Apex VF pages. Below is the code to implement this feature on VF page . Click inside box to speak… (function() { 'use strict'; if (! ('webkitSpeechRecognition' in window) ) return; var talkMsg = 'Speak...
Continue Reading