0

When using

<input type='text' autofocus>

the user can directly start typing after loading the page on a computer browser, without any other click.

On Chrome Android, the input receives indeed the focus on load, but the keyboard is not opened, then all the point of autofocus is lost.

How to make it work correctly on Android?

Basj
  • 41,386
  • 99
  • 383
  • 673

1 Answers1

-1
<input type='text' onload='this.click();' autofocus >
ScrapBench
  • 99
  • 3