[jQuery] Re: Tabs with multiple CSS classes

2008-09-27 Thread Klaus Hartl
On 27 Sep., 01:06, "Dan Baughman" <[EMAIL PROTECTED]> wrote: > Is looking at the noncompressed code the best way to figure that stuff out > with out having to ask? The best way is reading the documentation: http://docs.jquery.com/UI/Tabs *But*: In this special case you wouldn't have had luck, be

[jQuery] Re: Tabs with multiple CSS classes

2008-09-26 Thread Dan Baughman
Thank you kindly sir, that did exacly what I wanted. I only had to use the navClass: 'my-ui-tabs-nav' option. Is looking at the noncompressed code the best way to figure that stuff out with out having to ask? On 9/26/08, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > You can change the class na

[jQuery] Re: Tabs with multiple CSS classes

2008-09-26 Thread Klaus Hartl
You can change the class names via options (undocumented): $('#foo').tabs({ navClass: 'my-ui-tabs-nav' selectedClass: 'my-ui-tabs-selected', disabledClass: 'my ui-tabs-disabled', panelClass: 'my-ui-tabs-panel', loadingClass: 'my-ui-tabs-loading' }); Althou