Skip to content

Instantly share code, notes, and snippets.

@cathyxz
Created April 18, 2018 21:03
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save cathyxz/73739c1bdea7d7011abb236541dc9aaa to your computer and use it in GitHub Desktop.
Save cathyxz/73739c1bdea7d7011abb236541dc9aaa to your computer and use it in GitHub Desktop.

iOS restrictions re: bringing up the keyboard on programmatic focus

I can't find exact specifications on this, but it seems that iOS restricts bringing up the keyboard via programmatically focusing on <input>. It only brings up the keyboard in response to explicit user interaction.

  1. iOS focus on input field only brings up keyboard when called inside a click handler.
  2. It doesn’t work if the focus is async.

This presents a curious problem when you want to autofocus an input inside a modal or lightbox, since what you generally do is click on a button to bring up the lightbox, and then focus on the input after the lightbox has been opened. Without anything fancy, it actually works ok. The problem shows up when you try to add something fancy like a setTimeout or a promise.then(). I don't know why people would want to use a setTimeout here, but waiting for a promise is actually a pretty common use case. E.g. we try to batch dom manipulations like getting a lightbox to show up inside requestAnimationFrame. Also, it's possible that people would want to asynchronously wait for XHRs / data fetches. In any case, that use case is currently not supported by webkit / iOS.

Examples

References

I spent a long time searching for this without success, so I'm documenting it here for anyone else that runs into the same issue.

For reference, we ran into this issue, which was hackily solved by this solution.

@wescopeland
Copy link

Thank you for sharing!

@rastersysteme
Copy link

Thanks for sharing! 👍

@taletski
Copy link

Thanks! 🚀

@YaoKaiLun
Copy link

YaoKaiLun commented Dec 25, 2022

A setTimeout solution: https://stackoverflow.com/a/55652503

@carlosb24
Copy link

not display keyboard in ios for me using a promise

@ipiranhaa
Copy link

not display keyboard in ios for me using a promise

Maybe this problem: WebKit/WebKit#2907

@fabb
Copy link

fabb commented Mar 3, 2023

A setTimeout solution: https://stackoverflow.com/a/55652503

wow that's ugly 😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment