[jquery-ui] History support in Tab Controls

2009-02-23 Thread Aleem B
I would really like to have back/forward support in tab controls. I know the feature has been pulled out and has been a todo item for quite some time but short of waiting for it to be implemented, is there any other approach anyone here has taken to support browser history navigation on tab contro

[jquery-ui] Re: Tabs that link to another page with Tabs

2009-02-21 Thread Aleem B
On Sat, Feb 21, 2009 at 1:30 AM, Klaus Hartl wrote: > > Hi Chris, > > you can activate a tab via url fragment identifier. Say you want to > open the page with Page 1 third tab selected, the url to achieve that > looks like: > > your.page.com/whatever.html#sub3 > Is this supported in V3 of tabs?

[jquery-ui] Re: Tabs to Other Pages with Tabs

2009-02-19 Thread Aleem B
Tabs v2 support this stuff but got pulled out of the current released due to some buggy behavior in Safari I think. See here: http://stilbuero.de/jquery/tabs/#fragment-3 -- Aleem On Fri, Feb 20, 2009 at 8:52 AM, Christopher Webb wrote: > I'm having some trouble implementing ui tabs on a part

[jquery-ui] end animate() at current style and specify a starting style

2009-02-19 Thread Aleem B
The call to animate({ fontSize:'20px' }) starts with the current size and ends at 20px. Can I pass any params to make it start at 20px and end at the current size? Thx -- Aleem --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Googl

[jquery-ui] Cannot call twice: $("#foo").mywidget()

2009-02-18 Thread Aleem B
[Originally post on jQuery-en] I created a widget and figured that it can only be called once per element: $.widget('ui.mywidget', { _init: function() { alert('hello'); } } $.widget("ui.mywidget", mywidget); $("#foo").mywidget(); // alerts hello $("#foo").mywidget(); // doesn't d