How do I make a text input non-editable?

HtmlCssHtml Input

Html Problem Overview


So I have a text input

<input type="text" value="3" class="field left">

Here is my CSS for it

background:url("images/number-bg.png") no-repeat scroll 0 0 transparent;
border:0 none;
color:#FFFFFF;
height:17px;
margin:0 13px 0 0;
text-align:center;
width:17px; 

Is there a setting or a trick to this, I was thinking of doing a label instead but how about the styling. How do I convert them and is there a better way or is that the only way?

Html Solutions


Solution 1 - Html

<input type="text" value="3" class="field left" readonly>

No styling necessary.

See <input> on MDN https://developer.mozilla.org/en/docs/Web/HTML/Element/input#Attributes

Solution 2 - Html

You can add the attribute readonly to the input:

<input type="text" value="3"
       class="field left" readonly="readonly">

More info: http://www.w3schools.com/tags/att_input_readonly.asp

Solution 3 - Html

You can use readonly attribute, if you want your input only to be read. And you can use disabled attribute, if you want input to be shown, but totally disabled (even processing languages like PHP wont be able to read those).

Solution 4 - Html

Just to complete the answers available:

An input element can be either readonly or disabled (none of them is editable, but there are a couple of differences: focus,...)

Good explanation can be found here:
What's the difference between disabled=“disabled” and readonly=“readonly” for HTML form input fields?

How to use:

<input type="text" value="Example" disabled /> 
<input type="text" value="Example" readonly />

There are also some solutions to make it through CSS or JavaScript as explained here.

Solution 5 - Html

<input type="text" value="3" class="field left" readonly>

You could see in https://www.w3schools.com/tags/att_input_readonly.asp

The method to set "readonly":

$("input").attr("readonly", true)

to cancel "readonly"(work in jQuery):

$("input").attr("readonly", false)

Solution 6 - Html

Add readonly:

<input type="text" value="3" class="field left" readonly>

If you want the value to be not submitted in a form, instead add the disabled attribute.

<input type="text" value="3" class="field left" disabled>

There is no way to use CSS that always works to do this.

Why? CSS can't "disable" anything. You can still turn off display or visibility and use pointer-events: none but pointer-events doesn't work on versions of IE that came out earlier than IE 11.

Solution 7 - Html

you just need to add disabled at the end

<input type="text" value="3" class="field left" disabled>

Solution 8 - Html

if you really want to use CSS, use following property which will make field non-editable.

pointer-events: none;

Solution 9 - Html

every input must have readonly or editable field so use it

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMatt ElhotibyView Question on Stackoverflow
Solution 1 - HtmlBoltClockView Answer on Stackoverflow
Solution 2 - HtmlStephan MullerView Answer on Stackoverflow
Solution 3 - HtmltomsseisumsView Answer on Stackoverflow
Solution 4 - HtmljsideraView Answer on Stackoverflow
Solution 5 - HtmlJ. FanView Answer on Stackoverflow
Solution 6 - Htmlnew QOpenGLWidgetView Answer on Stackoverflow
Solution 7 - HtmlMichanView Answer on Stackoverflow
Solution 8 - HtmlsaadkView Answer on Stackoverflow
Solution 9 - HtmlAhmed RazaView Answer on Stackoverflow