Frage

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
});
War es hilfreich?

Lösung 2

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

Andere Tipps

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
});
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top