[jQuery] Re: Initialize tabs href.

2009-02-18 Thread Richard D. Worth
Could you share a complete code sample, full html and javascript in one pastie? Thanks. - Richard On Wed, Feb 18, 2009 at 6:42 AM, m.ugues wrote: > > I tried to put the links in the tabs definition blank as described > here: > > http://pastie.org/392713 > > Then I tried to initialize them in th

[jQuery] Re: Initialize tabs href.

2009-02-18 Thread m.ugues
I tried to put the links in the tabs definition blank as described here: http://pastie.org/392713 Then I tried to initialize them in the document.ready (because I have to pass 1 parameter to the url that i'm calling); When i create the tabs via jQuery the first tab is not selected (it is selecte

[jQuery] Re: Initialize tabs href.

2009-02-09 Thread Richard D. Worth
You need to init the tabs on the element before you can call the .tabs('ur'... method. Untested: http://pastie.org/384667 - Richard On Mon, Feb 9, 2009 at 2:46 PM, m.ugues wrote: > > Hallo all. > I would like to initialize the tabs href on the document.ready. > > http://pastie.org/384170 > > I

[jQuery] Re: Initialize tabs href.

2009-02-09 Thread m.ugues
Sorry, was a cut and paste error :) But the problem remains. Any idea? Massimo On 9 Feb, 22:33, Stephan Veigl wrote: > Hi Massimo, > > you forgot the closing parenthesis of the ready function > > $(document).ready(function() { >   initLinks(); > > }); // <-- > > by(e) > Stephan > > 2009/2/9 m

[jQuery] Re: Initialize tabs href.

2009-02-09 Thread Stephan Veigl
Hi Massimo, you forgot the closing parenthesis of the ready function $(document).ready(function() { initLinks(); }); // <-- by(e) Stephan 2009/2/9 m.ugues : > > Hallo all. > I would like to initialize the tabs href on the document.ready. > > http://pastie.org/384170 > > I tried like this > >