[jQuery] Re: Help with tabsLoad

2008-06-18 Thread Klaus Hartl
On Jun 19, 12:47 am, keny <[EMAIL PROTECTED]> wrote: > !!!  THANKS YOU VERY MUCH > > Anyway i have a last request or maybe a last question. > > Is it possible to make apear in the tabs the word loading .. and the > gif when we use this function ? That was discussed here: http://groups.google

[jQuery] Re: Help with tabsLoad

2008-06-18 Thread keny
!!! THANKS YOU VERY MUCH Anyway i have a last request or maybe a last question. Is it possible to make apear in the tabs the word loading .. and the gif when we use this function ? Cause not ist loading via ajax but the user may think nothing happen if the page take time to load. Ps i ha

[jQuery] Re: Help with tabsLoad

2008-06-18 Thread Klaus Hartl
I think you're now running into the common Ajax rebinding problem. You may want to read the FAQ entry on this: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F --Klaus On 18 Jun., 00:09, keny <[EMAIL PROTECTED]> wrote: > Hi, > > Thanks no

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
Hi, Thanks now ist 99% right and better. Everyting work for the fisrt level of link but not for other one. If you check my examle under tab # 2 click to load page #3 Page load in the tab right. (a big big thanks you !) Next click to load page #1 or #2 Page load not in tab . Is it possible t

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
Opss the example is here : http://www.snipvideo.com/tabs/ Thanks On 17 juin, 02:07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > No that's wrong. As I already stated: > > The problem with your loadTab function was that it was > reinitializing tabs turning them into in-page tabs as all anchor > eleme

[jQuery] Re: Help with tabsLoad

2008-06-16 Thread Klaus Hartl
No that's wrong. As I already stated: The problem with your loadTab function was that it was reinitializing tabs turning them into in-page tabs as all anchor elements are already pointing to a hash at that point of time. In other words, you must not call tabs() a second time. The problem with u

[jQuery] Re: Help with tabsLoad

2008-06-16 Thread keny
Hi, Without the return statement nothing happen :-( And i understand why you told me to choose a normal link but dont worry ist in a member section of my site and google dont even crawl those web page. And i can't use the second function as in the page i show i whant some link to point to my fun

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread Klaus Hartl
Sigh, I'm not used to using javascript: urls in links, which is considered bad practice. Please change it to: javascript:void(loadTab( 'ahah_3.html' )); Removing the return statement should also work: function loadTab(url) { $(this).parents('#container-8').load(url); } Please read: http://

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread keny
Hi, thanks again for answer me, Your function dont work, it only show in another page the word false I have try all of these combinaison whit the same result : function loadTab(url) { var url; $(this).parents('div.ui-tabs-panel').load(url); return false; } function loadTab(url) {

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread Klaus Hartl
Ah, I see. Please change the loadTab function to this: function loadTab(url) { $(this).parents('div.ui-tabs-panel').load(url); return false; } and try again. The problem with your loadTab function was that it was reinitializing tabs turning them into in-page tabs as all anchor elements a

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread keny
Hi, Ya like i said everyting work the link is loaded but afther that, even if you click on tab 1 or 2 or 3 the page d'ont load anymore ist stay to page 3 If i click tab 1 ist should reload the page 1 same thing for tab 2 ... Thank you ! On 15 juin, 02:50, Klaus Hartl <[EMAIL PROTECTED]> wro

[jQuery] Re: Help with tabsLoad

2008-06-14 Thread Klaus Hartl
So what is going wrong now? To me it looks like everything works as expected (Tabs are loading correctly and the link saying "This link load page 3 in current tab via ajax" does exactly what it says)... --Klaus On 15 Jun., 00:36, keny <[EMAIL PROTECTED]> wrote: > hi thanks for helping > > i hav

[jQuery] Re: Help with tabsLoad

2008-06-14 Thread keny
hi thanks for helping i have upload a new version and still dont work no sherif code in this one http://www.snipvideo.com/tabs/ help is very appreciate On 14 juin, 01:58, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 13 Jun., 23:17, keny <[EMAIL PROTECTED]> wrote: > > > Thanks > > > Is there a

[jQuery] Re: Help with tabsLoad

2008-06-14 Thread keny
Hi, I upload the demo to my own website and whitout red sherif code i still have the same problem after loading my ling via my function tabs stop to work Check by yourself http://www.snipvideo.com/tabs/ Thanks you very very much for your help i appreciate it. keny On 14 juin, 01:58, Klaus Ha

[jQuery] Re: Help with tabsLoad

2008-06-13 Thread Klaus Hartl
On 13 Jun., 23:17, keny <[EMAIL PROTECTED]> wrote: > Thanks > > Is there a way to make a function that will work ? I am not expert in > JS like you. Maybe you can check this site that offer tab and a > function that work to load link via ajax in there tab : All you need to do is *not* include the

[jQuery] Re: Help with tabsLoad

2008-06-13 Thread keny
Thanks Is there a way to make a function that will work ? I am not expert in JS like you. Maybe you can check this site that offer tab and a function that work to load link via ajax in there tab : http://www.dynamicdrive.com/dynamicindex17/ajaxtabscontent/ Fucntion here : http://www.dynamicdri

[jQuery] Re: Help with tabsLoad

2008-06-13 Thread Klaus Hartl
The main problem is that you're using document.write (in the RedSheriff tracker code) in the pages that get loaded via Ajax as tab content. That just won't work. That's the reason why you're getting a blank page. --Klaus keny schrieb: > Hi thanks Klaus for helping me, > > I upload a demo of wh

[jQuery] Re: Help with tabsLoad

2008-06-12 Thread keny
Hi thanks Klaus for helping me, I upload a demo of what i whant here : http://membres.lycos.fr/homeinv/tabs/ (sorry for the ads ist a free hosting) My function is under tabs # 2 and the problem is discribed here to. Thanks you very much for your help On 12 juin, 01:51, Klaus Hartl <[EMAIL

[jQuery] Re: Help with tabsLoad

2008-06-11 Thread Klaus Hartl
I'd like to help, but I stil don't understand your problem, I'm sorry. --Klaus On 12 Jun., 01:08, keny <[EMAIL PROTECTED]> wrote: > No one ? > > I really need this to work but have no skill with js > > Thanks > > On 7 juin, 22:37, keny <[EMAIL PROTECTED]> wrote: > > > Hi thanks for the answer >

[jQuery] Re: Help with tabsLoad

2008-06-11 Thread keny
Forget to mention that the var tab contain the page name ex : mypage.html Thanks On 7 juin, 22:37, keny <[EMAIL PROTECTED]> wrote: > Hi thanks for the answer > > I whant to load the link in the function in the current panel i dont > whant every link to be loaded in panel so your first function w

[jQuery] Re: Help with tabsLoad

2008-06-11 Thread keny
No one ? I really need this to work but have no skill with js Thanks On 7 juin, 22:37, keny <[EMAIL PROTECTED]> wrote: > Hi thanks for the answer > > I whant to load the link in the function in the current panel i dont > whant every link to be loaded in panel so your first function was not > fo

[jQuery] Re: Help with tabsLoad

2008-06-07 Thread keny
Hi thanks for the answer I whant to load the link in the function in the current panel i dont whant every link to be loaded in panel so your first function was not for me, i try the next one that work but this function was reloaded the tab in the panel so i came whit this function that work : fu

[jQuery] Re: Help with tabsLoad

2008-06-07 Thread Klaus Hartl
Forgot to mention that you need to use the latest version, from jQuery UI RC1 that is. --Klaus On 7 Jun., 09:15, Klaus Hartl <[EMAIL PROTECTED]> wrote: > What exactly do you want to achieve? If you try to automatically load > content from links inside a tab panel into the panel itself, replacin

[jQuery] Re: Help with tabsLoad

2008-06-07 Thread Klaus Hartl
What exactly do you want to achieve? If you try to automatically load content from links inside a tab panel into the panel itself, replacing the content, try this: $('#example').tabs({ load: function(ui) { $('a', ui.panel).click(function() { $(ui.panel).load(this.href);