quano
quano

Reputation: 19102

HTML - make input field selectable but not changeable

Like the youtube embed text fields. How do you make a text field selectable but not changeable?

Upvotes: 8

Views: 12026

Answers (2)

jessegavin
jessegavin

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

Dustin Laine
Dustin Laine

Reputation: 38503

<input type="text" value="Some Text" readonly="readonly" />

Upvotes: 28

Related Questions