Programmatically selecting text in an input field on iOS devices (mobile Safari)

sroebuck picture sroebuck · Jul 17, 2010 · Viewed 72k times · Source

How do you programmatically select the text of an input field on iOS devices, e.g. iPhone, iPad running mobile Safari?

Normally it is sufficient to call the .select() function on the <input ... /> element, but this does not work on those devices. The cursor is simply left at the end of the existing entry with no selection made.

Answer

jobwat picture jobwat · Jun 10, 2011
input.setSelectionRange(0, 9999);

https://developer.mozilla.org/en/DOM/Input.select