[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-05 Thread fleabo
Thanks Klaus, works perfectly. ger On Nov 4, 11:47 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > My bad. Try this instead: > > var $tabs = $('#staff-tab > ul').tabs({ cookie: { expires: 30 } }); > $('a', $tabs).click(function() { >     if ( $(this).parent().hasClass('ui-tabs-selected') ) { >    

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
My bad. Try this instead: var $tabs = $('#staff-tab > ul').tabs({ cookie: { expires: 30 } }); $('a', $tabs).click(function() { if ( $(this).parent().hasClass('ui-tabs-selected') ) { $tabs.tabs('load', $('a', $tabs).index(this)); } }); --Klaus On 4 Nov., 23:19, fleabo <[EMAIL PR

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread fleabo
I've used your code like this (maybe it's not the right way); $(document).ready(function(){ var $tabs = $('#staff-tab > ul').tabs({ select: function(e, ui) { if (ui.index === $tabs

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
Well, if the tab initially loads that form, the code I've posted should work. --Klaus On 4 Nov., 17:57, bogno <[EMAIL PROTECTED]> wrote: > Sorry, should of specified. I want to reload a blank (original load) form. I > am using it for a ticket system, so if someone wants to submit a second > ti

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread bogno
Sorry, should of specified. I want to reload a blank (original load) form. I am using it for a ticket system, so if someone wants to submit a second ticket, all they have to do is click on the tab to get an empty form. At present I use the tabs option { unselect: true } which works but requires

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
What does "reload the form" mean? Reloading the result of the formerly submitted form or load a blank form again? The former will be a bit more complicated. --Klaus On 4 Nov., 14:34, bogno <[EMAIL PROTECTED]> wrote: > I can't seem to get this to work. > > I have a tab that I load a form into, s

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread bogno
I can't seem to get this to work. I have a tab that I load a form into, submit the form via ajax and return a view which replaces the form in the tab. So far everything works ok. I would then like to have the possibility for the user to click on the active tab so as to reload the form. My tabs

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-10-23 Thread Klaus Hartl
var $tabs = $('#example').tabs({ select: function(e, ui) { if (ui.index === $tabs.data('selected.tabs')) { $tabs.tabs('load', ui.index); } } }); --Klaus On 23 Okt., 16:58, fleabo <[EMAIL PROTECTED]> wrote: > Is it possible to click on the selected tab so as t