Android/iPhone webkit, event triggered on keyboard pop?

10,734

so apparently not: http://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW5

I found the most useful information on this other thread: iPad Web App: Detect Virtual Keyboard Using JavaScript in Safari?

on Android, we can detect that the keypad is up using the window.innerHeight value, but not on iPhon, the value is not updated... (which also does not help to align stuff at the bottom..)

so I personally just assume the keyboard is popped up 700ms after a text input is entered... ugly, but it works!

Share:
10,734
jobwat
Author by

jobwat

I do dev/devops for a living and a little as well the rest of the time, because I love it!

Updated on June 05, 2022

Comments

  • jobwat
    jobwat over 1 year

    On mobile webkit, when focusing on a text input field, the keyboard pops up.
    Is there any known event to bind on at the end of the keyboard slide animation??