Reputation: 19102
Like the youtube embed text fields. How do you make a text field selectable but not changeable?
Upvotes: 8
Views: 12026
Reputation: 75640
Another way to achieve this is just to make a div appear like a text field.
<div style="border: inset 2px #ccc;background:#fff;padding:2px;">
http://example.com/?id=sdfsdfsdfsdfsdf
</div>
Upvotes: 1
Reputation: 38503
<input type="text" value="Some Text" readonly="readonly" />
Upvotes: 28