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

I am using the jQuery datepicker on a text input field and I don't want to let the user change any of the text in the text input box with the keyboard.

Here's my code:

$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
});

How do I not allow keyboard typing in a text input field using jQuery?

share|improve this question

3 Answers

up vote 2 down vote accepted
$('#rush_needed_by_english').keydown(function() {
  //code to not allow any changes to be made to input field
  return false;
});
share|improve this answer
Perfect! Thank you! – zeckdude Mar 10 '10 at 0:53
Does this cover paste events? What if I click in the box, and type ctrl-V ? – Cheeso Mar 10 '10 at 11:16
$('#rush_needed_by_english').attr('readonly', 'readonly');
share|improve this answer

You could:

$('#rush_needed_by_english').attr('disabled', 'disabled');
share|improve this answer
No, that would make the field look disabled also and I am trying to avoid that. I just dont want them to be able to type. – zeckdude Mar 10 '10 at 0:56
ANother problem with attribute disabled these fields will not get passed to server – Rama Vadakattu Jan 6 '12 at 7:05

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.