Bug Tracker

Opened 12 years ago

Closed 12 years ago

Last modified 11 years ago

#9244 closed bug (invalid)

.select() does not select input content on iPhone Safari

Reported by: duynguyen0511@… Owned by: duynguyen0511@…
Priority: undecided Milestone: 1.next
Component: selector Version: 1.6
Keywords: Cc:
Blocked by: Blocking:

Description

I am running Safari on iOS 4.3.1

.select() event does not select on Tap/click input field. The same code works on normal browser (Chrome v11.0.696.65, Safari v5.0.5, FF v4.0.1)

Example: <script> $('input').click(function() {

$(this).focus(); $(this).select();

}); </script>

<input type="text" name="amount" id="amount" value="" />

Change History (5)

comment:2 Changed 12 years ago by Rick Waldron

Component: unfiledselector
Owner: set to duynguyen0511@…
Status: newpending

Can you send me an iPhone to test this?

Version 0, edited 12 years ago by Rick Waldron (next)

comment:3 Changed 12 years ago by trac-o-bot

Resolution: invalid
Status: pendingclosed

Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!

comment:4 Changed 11 years ago by anonymous

This is still a bug!

comment:5 Changed 11 years ago by anonymous

FWIW this appears to be a "feature" of mobile Safari. The workaround is to manually specify the range ala:

setSelectionRange(0, 9999);

Answer from here:

http://stackoverflow.com/questions/3272089/programmatically-selecting-text-in-an-input-field-on-ios-devices-mobile-safari

Note: See TracTickets for help on using tickets.