Pregunta

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
});
¿Fue útil?

Solución 2

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

Otros consejos

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 bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top