Question

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
});
Was it helpful?

Solution 2

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

OTHER TIPS

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
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top