I\'m having a few issues getting a keyup event to fire on my iPhone, my code is as follows:
var passwordArray = [\"word\", \"test\", \"hello\", \"ano
You can add input event. It is an event that triggers whenever the input changes. Input works both on desktop as well as mobile phones
test.on('keyup input', function(){ //code });
You can check this answer for more details on jQuery Input Event