HTML - make input field selectable but not changeable
html, text
Solution
<input type="text" value="Some Text" readonly="readonly" />
Problem
Like the youtube embed text fields. How do you make a text field selectable but not changeable?
html, text
<input type="text" value="Some Text" readonly="readonly" />
Like the youtube embed text fields. How do you make a text field selectable but not changeable?