Focus input field with JQuery without selecting current value text

Viewed 12199
$("#myinputfield").focus();

Doing that on an input field with it's value already set causes the current value to be selected. How can I focus the field without selecting the text?

7 Answers
Related