I am using the jQuery datepick plugin on two input boxes, and would like to prevent users of my Web site from manually entering dates in those input boxes. How could I do that?

I think I could cancel the onkeydown and onkeypress events, but it doesn't strike me as particularly elegant to do the same thing on two event handlers. Is there any other means to achieve the same thing?

link|improve this question

Why do you want to do that? – SLaks Jan 26 '11 at 13:50
@SLaks: I'm pretty paranoid when it comes to preventing invalid input. – Eduardo León Jan 26 '11 at 13:53
feedback

3 Answers

up vote 3 down vote accepted

Set the "readonly" value on the input.

<input type='text' id='foo' readonly='readonly'>
link|improve this answer
feedback

just add readonly attributes to those input fields, that will prevent direct entry

link|improve this answer
feedback
<input type="text" readonly/>

should do it.

link|improve this answer
but according to standards you should use readonly='readonly' – Harish Jan 26 '11 at 14:02
1  
@Harish: no sir, you're wrong. "Standards" like W3C tell us that this is a boolean attribute. You might be right for supporting non-standard browsers like Internet Explorers: w3.org/TR/html401/interact/forms.html#adef-readonly – jAndy Jan 26 '11 at 14:13
thanks for correcting ;) – Harish Jan 26 '11 at 14:16
feedback

Your Answer

 
or
required, but never shown

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