javascript - Select ALL in the input form contents on focus on iOS / Android -
i have following code select contents of input element has id="embedurl"
$('#embedurl').focus(function(event) { settimeout(function() { $('#embedurl').select(); }, 0); }); it works fine on desktop, in ios nothing gets selected.
any idea how fix that?
thanks!
try:
$('#embedurl').setselectionrange(0, 9999); from this answer. worked me, although comments on answer note caveats, such needing trigger focus() event first.
Comments
Post a Comment