[jQuery] Re: UI Tabs - change onClick behaviour

2009-02-03 Thread plusz
On 3 Lut, 15:17, Eric Garside wrote: > Try: > > $('#menu_zakladka3').unbind('click').click(function(){ >     window.location = 'http://some.url'; >     return false; > > }); hmm.. doesn't work but thank you very much :) I had to define behaviuor for 'a' inside #menu_zakladka3 and I unbinded a

[jQuery] Re: Accordion menue with up to 3 levels

2009-02-03 Thread plusz
On 3 Lut, 14:32, heohni wrote: > I am wanting to use the jquery accordion menu with a structure up to 3 > levels. Is that a) possible and b) has somebody a demo / tutorial for > this kind of menu for me? try this http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/

[jQuery] UI Tabs - change onClick behaviour

2009-02-02 Thread plusz
I have 6 tabs. I changed event to load tab content on hover for tab 'menu_zakladka3' I need to open page HTTP://SOMEURL instead of opening tab or load ajax data (this page has to read variables from the page header and check some cookies, so it is easier to not load with AJAX) How to do this? m