[jQuery] Re: tab overflow

2009-03-01 Thread Paul Georges
an older version of jquery tabs... i thought changing the ui-tabs-nav css class to have an overflow: hidden would help... but it didn't. any suggestions? thanks heaps! On Feb 27, 3:43 pm, Jack Killpatrick wrote: > perhaps of interest: > > http://beta.ksscholl.com/jquery/tabnavigation

[jQuery] tab overflow

2009-02-26 Thread Paul Georges
hey guys and gals, any ideas on how the tabs code can be modified to add an arrow at each extremity to make the tabs scroll. this way, tabs can remain on one row instead of several. any suggestions? has this been done yet?

[jQuery] Re: adding html to tab labels

2009-02-26 Thread Paul Georges
however... when i add another image in the tab which has an anchor tag (delete button for tab) the css explodes and the tab goes all ugly... On Feb 25, 10:29 am, Paul Georges wrote: > solved... wasn't liking my floating divs... > > On Feb 25, 9:48 am, Paul Georges wrote: >

[jQuery] Re: adding html to tab labels

2009-02-24 Thread Paul Georges
solved... wasn't liking my floating divs... On Feb 25, 9:48 am, Paul Georges wrote: > i'm trying to add some html to the label area of tabs in order to add > an icon and also some divs that i can access at later times to modify > easily. > > any suggestions on how to d

[jQuery] adding html to tab labels

2009-02-24 Thread Paul Georges
i'm trying to add some html to the label area of tabs in order to add an icon and also some divs that i can access at later times to modify easily. any suggestions on how to do this? at the moment i'm doing something like this $("#tabs").tabs('add' , '#' + tag, '' + nick + ''); it does what i

[jQuery] Re: adding tabs dynamically

2009-02-24 Thread Paul Georges
se the add callback to > populate the tab: > > $('#whatever').tabs({ >     add: function(event, ui) { >         $(ui.panel).html( ... ) >             .find('input'); // do something with these inputs >     } > > }); > > It seems you have to use the add call

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
, ui) { >         // add additional html to the tab >         $('span', ui.tab).html(...); >     } > > }); > > Or you can change the tabTemplate option and add that html there... > > --Klaus > > On 20 Feb., 06:01, Paul Georges wrote: > > > hey guys and gals, &g

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
, ui) { >         // add additional html to the tab >         $('span', ui.tab).html(...); >     } > > }); > > Or you can change the tabTemplate option and add that html there... > > --Klaus > > On 20 Feb., 06:01, Paul Georges wrote: > > > hey guys and gals, &g

[jQuery] Re: adding tabs dynamically

2009-02-22 Thread Paul Georges
, ui) { >         // add additional html to the tab >         $('span', ui.tab).html(...); >     } > > }); > > Or you can change the tabTemplate option and add that html there... > > --Klaus > > On 20 Feb., 06:01, Paul Georges wrote: > > > hey guys and gals, &g

[jQuery] adding tabs dynamically

2009-02-20 Thread Paul Georges
hey guys and gals, http://docs.jquery.com/UI/Tabs followed the above docs but couldn't quite add tabs correctly yet. i can add a tab, yes, but then i can't change it's label or innerHTML. how can i do this? cheers! Paul!