Search code examples
jqueryhtmlinputwebkitspeech

Remove "x-webkit-speech" from <input>


In chrome and in some add-on, Auto added x-webkit-speech ´s attribute in <input>

Example :

<input type="number" x-webkit-speech>

I found this from Chrome Developer Tools (Inspect Element).

How can I remove x-webkit-speech by jQuery ? or disable by HTML ?

I do like

$('input').removeAttr('x-webkit-speech');

This dosen't work :(


Solution

  • Found Howto now :

    Just add some delay like

    setTimeout(function(){
       $('input').removeAttr('x-webkit-speech');
    },1000);
    

    Because that some add-on added x-webkit-speech´s attr after page loaded.