I have
<input type="text" id="first">
and have
$('#first').select();
So, in some case I want to deselect the input, something like
$('#first').deselect();
Can you provide the code how to deselect selected input? But that is not focus, I am not talking about selecting input itself, but selecting the text in it. Like you double click on text. Thanks.