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

For text input I do:

$('input[type="text"]').each(function(){
  $(this).attr('readonly','readonly');
});

But what should I do for textarea, to make it readonly.

share|improve this question

4 Answers

up vote 31 down vote accepted

Include it in your selector (using a multiple/element selector), like this:

$('input[type="text"], textarea').attr('readonly','readonly');

You can test it here, if it's the only thing you're doing, there's no need for a .each(), you can just call .attr() on all matched elements.

share|improve this answer
That worked ..thanks a lot... – Hacker Jul 21 '10 at 9:59

From Jquery 1.6 use

$("#mytxtarea").prop("disabled", true);

Visit http://api.jquery.com/prop/

share|improve this answer
me tried this. but the text area not enables again if I reload the page. – Krishna Raj K Mar 29 '12 at 7:45

Try this

$("#mytxtarea").attr("disabled", "disabled");
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.