I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround?

$("#souper_fancy").focus(function() { $(this).select() });
link|improve this question

I want exact behavior in safari of iPad/iPhone. This is not working in iPod/iPhone browsers. any clue. Below accepted answer is for Desktop based Chrome/safari only. – Sutikshan Dubey Mar 29 at 11:25
feedback

2 Answers

up vote 61 down vote accepted

It's the onmouseup event that is causing the selection to get unselected, so you just need to add:

$("#souper_fancy").mouseup(function(e){
	e.preventDefault();
});
link|improve this answer
6  
You sir are a gentleman and a scholar. – user140550 Aug 13 '09 at 2:55
1  
More ref on the bug here : code.google.com/p/chromium/issues/detail?id=4505 – Rajat Apr 28 '10 at 1:06
How to achieve the same using Prototype? – tehfink Apr 29 '11 at 2:59
awesome...thanks for this! – pruett Dec 5 '11 at 22:06
You can also try binding to the 'click' event and avoid having to make two bindings. – uglymunky Feb 12 at 7:26
show 3 more comments
feedback

This works fine for input type="text" elements. What kind of element is #souper_fancy?

$("#souper_fancy").focus(function() {
    $(this).select();
});
link|improve this answer
it's a type="text" element. I tried $("input[type=text]") as well. Still not working with jQuery 1.3.2 in Safari. – user140550 Aug 13 '09 at 2:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.