HTML - input field selection but not changeable

Similar to youtube text input text fields. How can you select a text box but not change it?

+6
html text
source share
2 answers
<input type="text" value="Some Text" readonly="readonly" /> 
+24
source share

Another way to achieve this is to simply make a div as a text box.

 <div style="border: inset 2px #ccc;background:#fff;padding:2px;"> http://example.com/?id=sdfsdfsdfsdfsdf </div> 
+1
source share

All Articles