I have created a mobile web application using HTML5 and CSS3, it's doesn't have any native feature. Now, I need to provide voice search functionality in my app. I explored and find that google has launched one 'google voice app' for all the platforms. My questions is - Can I add this functionality in my pure mobile web application or it has to be a native call to recognize the voice?
            Asked
            
        
        
            Active
            
        
            Viewed 221 times
        
    1 Answers
1
            Are you looking for something like this : Speech Input
Chrome supports speech recognition for text input. You can use this by using this in your HTML
<input type=”text” speech x-webkit-speech /> 

 
    
    
        Sanjay Kumar
        
- 1,474
- 14
- 22
- 
                    yeah exactly sanjay ..thanks very much...but how can I do the similiar thing for safari in IPhone and other mobile browsers. – Ashish Nov 21 '12 at 05:57
- 
                    Well I got my answer here - Thanks Sanjay for your help though.http://stackoverflow.com/questions/6606182/what-are-the-x-webkit-speech-alternatives – Ashish Nov 21 '12 at 06:02
