Glen Lipka schrieb:
> Try: $("textarea.news01").attr("disabled", "true");
That should work with jQuery 1.02 and you should pass a boolean, not a
string:
$("textarea.news01").attr("disabled", true);
Otherwise you can try $("textarea.news01")[0].disabled = true;
But that throws an error if there's no element in $("textarea.news01"),
so be careful.
-- Klaus
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
