[jQuery] Re: ui.tabs question

2009-01-22 Thread Alexandre Plennevaux
So i've tried using the latest build of ui1.6rc5, including the tabs + jquery 1.3 and i reproduced exactly the demo sample available on the jqueryUI ui.Tabs demo page with the required CSS files, but it still breaks the tabbing functionality. I've reduced my code to simply call $("#mydiv > ul).tab

[jQuery] Re: ui.tabs question

2009-01-21 Thread Alexandre Plennevaux
In that case, thank you Klaus for the preventive comment. On Wed, Jan 21, 2009 at 11:25 PM, Klaus Hartl wrote: > > Sorry to hear that, but I was only referring to MorningZ's example, > which contained an outdated syntax and I wanted to prevent you (and > everybody else) to use it and wonder why

[jQuery] Re: ui.tabs question

2009-01-21 Thread Klaus Hartl
Sorry to hear that, but I was only referring to MorningZ's example, which contained an outdated syntax and I wanted to prevent you (and everybody else) to use it and wonder why it wouldn't work. I'll try to quote better next time. --Klaus On 21 Jan., 22:43, Alexandre Plennevaux wrote: > Well,

[jQuery] Re: ui.tabs question

2009-01-21 Thread Alexandre Plennevaux
Well, quite Frankly Klaus, i started this project 3 years ago and i used the tabs when it was but a plugin like another. The fact that now i have to integrate ui.core with ui.tabs is not really a good thing in my case: i don't have needs for anything else from the ui library, therefore i wish that

[jQuery] Re: ui.tabs question

2009-01-21 Thread Klaus Hartl
Seems to be using a fairly outdated version. The event's name to bind has changed since quite a while. Why not take a look at the documentation: http://docs.jquery.com/UI/Tabs#Events --Klaus On 21 Jan., 16:36, MorningZ wrote: > I've got this code working if it helps > > $("#TabContainer ul.ta

[jQuery] Re: ui.tabs question

2009-01-21 Thread Richard D. Worth
A couple other people have reported this same issue. It was because they were using incompatible versions of jQuery and jQuery UI. Make sure you're using one of the following jQuery UI 1.5.3 with jQuery 1.2.6 (not 1.3) jQuery UI 1.6rc4 with jQuery 1.2.6 (not 1.3) jQuery UI 1.6rc5 with jQuery 1.3 (

[jQuery] Re: ui.tabs question

2009-01-21 Thread Alexandre Plennevaux
hi MorningZ unfortunately that doesn't seem to work for me. Question: you attach that event to the tabs ul element ? On Wed, Jan 21, 2009 at 4:36 PM, MorningZ wrote: > > I've got this code working if it helps > > $("#TabContainer ul.tabs").tabs().bind("select.ui-tabs", function(e, > ui) { >

[jQuery] Re: ui.tabs question

2009-01-21 Thread MorningZ
I've got this code working if it helps $("#TabContainer ul.tabs").tabs().bind("select.ui-tabs", function(e, ui) { //Code inside here runs when tab is selected }); On Jan 21, 10:29 am, Alexandre Plennevaux wrote: > Hi all, > > I'm using ui.tabs and i would like to trigger a function when