[jQuery] How to make input readonly with jQuery in IE

[jQuery] How to make input readonly with jQuery in IE

> $("span.readonly input").attr("disabled", "disabled");
Does this work?
$("span.readonly input").attr("disabled", true);
The XHTML attribute is disabled="disabled" but the Javascript property is
boolean.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/