#9244 closed bug (invalid)
.select() does not select input content on iPhone Safari
Reported by: | Owned by: | ||
---|---|---|---|
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:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Component: | unfiled → selector |
---|---|
Owner: | set to duynguyen0511@… |
Status: | new → pending |
Can you send me an iPhone to test this?
comment:3 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
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:5 Changed 11 years ago by
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:
sample http://jsfiddle.net/MaXRq/1/