Good call Klaus.

Sorry Adrian, I was going off faulty memory, Klaus get the points on that
one :)

On 7/30/07, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
>
> Benjamin Sterling wrote:
> > Adrian:
> >
> > Try $('#myButton').removeAttr('disabled');
> >
> > but...  I believe IE6 has an issue with the disabled being dynamically
> > appended, so you may need todo:
> >
> > $('#myButton').disabled = true;
> >
> > $('#myButton').disabled = false;
>
> That will throw an error. Do not mix jQuery and DOM properties.
>
> Try:
>
> $('#myButton').attr('disabled', true);
> $('#myButton').attr('disabled', false);
>
>
> --Klaus
>



-- 
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com

Reply via email to