[jQuery] Re: slideup() issue with IE. HELP NEEDED

2008-05-11 Thread churock
Hey, the site is working now. My sincerest thanks to you all for the help! -Chad On May 10, 10:08 am, Jong <[EMAIL PROTECTED]> wrote: > Ahh, thanks for pointing that out :o) > > On 10 Maj, 15:04, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > > > On Sat, May 10, 2008 at 8:46 AM, Jong <[EMAIL P

[jQuery] Re: slideup() issue with IE. HELP NEEDED

2008-05-10 Thread Jong
Ahh, thanks for pointing that out :o) On 10 Maj, 15:04, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > On Sat, May 10, 2008 at 8:46 AM, Jong <[EMAIL PROTECTED]> wrote: > > > For some reason, Internet Explorer doesn't seem to like the attr() > > function. > > > // switch all tabs with the class '

[jQuery] Re: slideup() issue with IE. HELP NEEDED

2008-05-10 Thread Richard D. Worth
On Sat, May 10, 2008 at 8:46 AM, Jong <[EMAIL PROTECTED]> wrote: > > For some reason, Internet Explorer doesn't seem to like the attr() > function. > > // switch all tabs with the class 'active' off > $(".active").attr({ class: "tab" }); The name of the attribute is 'className', not 'class'. So

[jQuery] Re: slideup() issue with IE. HELP NEEDED

2008-05-10 Thread Jong
For some reason, Internet Explorer doesn't seem to like the attr() function. // switch all tabs with the class 'active' off $(".active").attr({ class: "tab" }); // switch *this* tab to have the 'active' class $(this).attr({class:"tab active"}); Changing it to // switch all tabs with the class