2013-04-26 2 views
0

다음 입력 태그를 html에 넣을 때 나타나는 마이크 아이콘의 omniture 추적 작업 중 마이크 아이콘 클릭을 추적 할 수 없습니다. 시도했습니다. 사용 :x-webkit-speech 클릭 추적

$("#abc").on("webkitspeechchange", function (e) { 
      var val = $(this).val(); 
      alert("speech recognition word"+val); 

이것은 작동하지 않습니다. 감사합니다. 감사 파 베시

답변

0

이 시도 :

$("#abc").on("speechchange webkitspeechchange", function (e) { 
    var val = $(this).val(); 
    alert("speech recognition word"+val); 
});