Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way (with a attribute flag or something like that) to enable form fields that are disabled to submit data?

Or, if that's not possible, is there any way to block fields from editing with css or any other attribute than disabled without hiding them?

My special case at the moment is an identifier for a data-set that should be shown in the form (uneditable) - if there is no better solution i think i'll use a hidden field in addition to the disabled one to hold the actual value with the disabled one showing it.

share|improve this question

2 Answers

up vote 9 down vote accepted

Checkout the readonly attribute http://www.w3schools.com/tags/att_input_readonly.asp

share|improve this answer
Great - Must have missed that one when thumbing through the attributes... working perfectly, thanks :) – bardiir Jan 19 '12 at 12:10

I think this may help you:

<input type="textbox" onKeyPress="return false;"/>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.