[jQuery] Re: Help with tabsLoad

2008-06-18 Thread keny
/Frequently_Asked_Questions#Why_do_my_events_st... --Klaus On 18 Jun., 00:09, keny [EMAIL PROTECTED] wrote: 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

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
() {     $('#container-8 ul').tabs({         load: function(ui) {             $('a.remote', ui.panel).click(function() {                 $(ui.panel).load(this.href);                 return false;             });         }     }); }); --Klaus On 16 Jun., 23:30, keny [EMAIL PROTECTED

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
;             });         }     }); }); --Klaus On 16 Jun., 23:30, keny [EMAIL PROTECTED] wrote: 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

[jQuery] Re: Help with tabsLoad

2008-06-16 Thread keny
;             });         }     }); }); --Klaus On 16 Jun., 01:01, keny [EMAIL PROTECTED] wrote: 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

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread keny
] wrote: 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

[jQuery] Re: Help with tabsLoad

2008-06-15 Thread keny
-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 are already pointing to a hash at that point of time. --Klaus On 15 Jun., 16:55, keny [EMAIL PROTECTED

[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

[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 way

[jQuery] Re: Help with tabsLoad

2008-06-13 Thread keny
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 what i whant here : http://membres.lycos.fr/homeinv/tabs/ (sorry for the ads ist a free hosting) My function is under

[jQuery] Re: Help with tabsLoad

2008-06-12 Thread keny
PROTECTED] wrote: 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

[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 for me

[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

[jQuery] Re: Help with tabsLoad

2008-06-07 Thread keny
this: function loadTab(tab) {     $('#example').tabs('load', tab); } Before you can use that you need to have initialized tabs once of course: $('#example').tabs(); --Klaus On 5 Jun., 02:55, keny [EMAIL PROTECTED] wrote: Hi thanks for reading I am trying to load a link

[jQuery] Help with tabsLoad

2008-06-04 Thread keny
Hi thanks for reading I am trying to load a link in a tab with this function with no result :-( function loadTab(tab){ var tab; var $tabs = $('#container-8').tabs; var selected = $tabs.tabsSelected(); $tabs.tabsLoad(selected,tab); } /script The tab variable contain the page to

[jQuery] Loading external link whit ajax in tab

2008-06-01 Thread keny
Hi, I am new whit jquery, I have a working tab that use the ajax load to diplay page in tab but these page contain link that are loading in external browser. I would like to load those link in the current tab whit ajax. Is it possible and how ? I am using this pluggin :