On Wed, Oct 29, 2008 at 1:39 PM, ricardobeat <[EMAIL PROTECTED]> wrote:

>
> The 'disabled' attribute is for the form elements themselves, they
> don't "cascade" down the parents. Also, in XHTML the disabled
> attribute doesn't use a boolean value. This should disable all form
> input elements:
>
> $('table:input').attr('disabled','disabled');


I assume you left out a space and meant

$('table :input')...

all the inputs within a table, not all the tables that are inputs.

- Richard

Reply via email to