HTML / Programming question for the propellerheads out there..
Tits!
I have a web page with a bunch of fields on it. The data in the fields are populated from a DB. The user can edit all of the fields except for one.
That field looks like this:
<input id="pC" name="pC" type="text"placeholder="Blah" class="form-control valid" maxlength="10" value="" disabled="disabled">
The problem is that this LOOKS like an editable field so users try to change the value. What I want to do is just display the data it contains in a plain-ol' format.
Any suggestions?
|