Pergunta

I am currently using keyup paste propertychange to detect input into a textarea form field.
However when using an iPad with siri these properties do not detect text input.

What is the correct way tocapture siri text in a form field using jQuery?

my sample

myTxtObj.on("keyup paste propertychange", textBoxTarget, function(e){
    // do something
});
Foi útil?

Solução 2

Use the change event in place of (or in addition to) propertychange.

Outras dicas

Use the input event. The change event will only detect when you switch focus.

Tested on iPad mini iOS 9.3.1

myTxtObj.on('input keyup paste propertychange change', textBoxTarget, function(e) {
    // do something
});
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top