How can I allow someone highlight with their mouse placeholder text of an input field? Right now, I cannot only read the placeholder text, and I do not know how to let the placeholder text be selectable with a mouse highlight.
Here is my input field:
<input
locale="en"
maxlength="255"
placeholder="I want to select, highlight and copy this text"
size="255"
type="text"
name="user[first_name]"
id="user_first_name">
EDIT:
SO tells me this is a potential duplicate.
I think my question is potentially different because I want to know how I would let a user highlight and copy the placeholder
text with their mouse. The linked SO post is asking about how to create a button that lets one copy the field's placeholder text to their clipboard. I on the other hand am curious about how a developer could write HTML / CSS to let a user with their mouse copy the placeholder text.
EDIT 2:
The end goal with the input form is nothing special here. I just have a request from a customer that they would like to highlight and copy the placeholder text of an input text field. I would like to accommodate their request, but I am also happy to and able to explain to them that this feature they are asking for as not possible because a placeholder
value just does not function that way. I would appreciate some 'official' documentation that describes the above limitation, regarding highlighting placeholder text.