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.
|
For text
But what should I do for |
||||
|
|
|
Include it in your selector (using a multiple/element selector), like this:
You can test it here, if it's the only thing you're doing, there's no need for a |
|||
|
|
|
|
||||
|
|
http://www.w3schools.com/TAGS/att_textarea_readonly.asp |
|||
|
|