vote up 0 vote down star

$input.disabled = true

or

$input.disabled = "disabled";

Which is the standard way?

And,reversely,how to enable an input?

flag

40% accept rate

1 Answer

vote up 4 vote down check

Set the disabled attribute.

$input.attr('disabled','disabled');

To enable again

$input.removeAttr('disabled');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.