up vote 20 down vote favorite
8
share [g+] share [fb]

I've been trying to find a way to change the window.location.hash to the currently selected tab in Jquery UI Tabs.

I've tried:

$("#tabs > ul").tabs();
$("#tabs > ul").bind("tabsshow", function(event, ui) { 
window.location.hash = ui.tab;
})

This results in changing the hash to #undefined when the tab is changed.

I've also tried:

$("#tabs > ul").tabs({ 
select: function(event, ui) { 
window.location.hash = ui.tab }
});

But this doesn't seem to be triggered at all.

Any help would be appreciated. Thanks.

Edit: It looks like part of my initial problem had something to do with js somewhere else interfering with this. Both the accepted answer and the other suggested answer slightly modified do work. Thanks all.

link|improve this question

are you trying to open a link in the tab where the link clicked from ? – Barbaros Alp Feb 20 '09 at 16:41
No, the links I'm opening are part of the current page itself, no ajax/etc. – Rob Feb 20 '09 at 16:58
this is a pretty awesome demo of this technique: http://jqueryfordesigners.com/jquery-tabs/ – Will Jul 22 '10 at 18:32
feedback

6 Answers

up vote 24 down vote accepted

In your event handler function ui.tab is an anchor element. You can retrieve its hash value like this:

$("#tabs > ul").tabs();
$("#tabs > ul").bind("tabsshow", function(event, ui) { 
    window.location.hash = ui.tab.hash;
})

Does this work for you?

link|improve this answer
Unfortunately no, I receive many ui.tab is undefined errors upon page load or tab change. – Rob Feb 20 '09 at 17:39
I've been trying with the demo that appears on the doc page and works fine with FF 3 and IE 7. Are you triggering the events manually? – Serhii Feb 20 '09 at 18:19
1  
I tried as you suggested with the demo page and your solution did end up working, thanks for the solution, I'll have to figure out what else in my code was stopping it from working. Thanks – Rob Feb 21 '09 at 3:01
If you are testing on Firefox, install the Firebug extension and put a console.trace() to track where the problems come from. – Serhii Feb 21 '09 at 11:07
feedback
$('#tabs').tabs({
    select: function(event, ui) {
        window.location.hash = ui.tab.hash;
    }
});
link|improve this answer
feedback

Would this be what you're going for?

$("#tabs > ul").tabs({ 
   select: function(event, ui) 
   { 
      window.location = "#" + ui.tab;
   }
});
link|improve this answer
I tried this without any luck. I even tried putting an alert prior to the window.location setting and it doesn't appear when changing tabs. The only way I could get it to activate was by binding tabsshow but that ends up with an undefined ui.tab – Rob Feb 20 '09 at 17:00
1  
When I tried using the demo code this solution slightly modified did work. The only change I would suggest is making it: window.location.hash = ui.tab.hash; – Rob Feb 21 '09 at 3:03
1  
This worked as the best solution for me. Other suggestions resulted in the page jumping to the tab selected when the location hash was updated. Seconding "window.location.hash = ui.tab.hash;" in place of what is provided in the example, tho. – Michael Reed Mar 1 '11 at 21:01
feedback

$('#tabs').tabs({ select: function(event, ui){ window.location = ui.tab.href; } });

link|improve this answer
feedback

I'm using this plugin: http://flowplayer.org/tools/demos/tabs/ajax-history.htm

link|improve this answer
feedback

It seems like ui.tab itself doesn't return a valid string. (instead it returns undefined, so you'd say it doesn't return anything at all.)

Try looking around in the dev version of ui.jquery.js whether there are any returns there, maybe you have to call a child of ui.tab ;-)

link|improve this answer
@Fabdrol you need ui.tab.index ;) – Varun Vohra Aug 13 '11 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.