I'm using this snippet to bind on select event:

$("#myTabControl").tabs({
  select: function(event, ui){
    var selectedTabName = $("#myTabControl").find(".ui-tabs-selected").find("span").text();
    // Do stuff with the selected tab name.
  }
  ...
});

The problem is ... I'm getting the name of the tab that was previously selected, not the one that is currently being selected.

Any advice on how to get the latter?

Note - this question is either very similar or a dup ... but I'm not sure it is phrased well enough (I'm not even sure if it's a complete dup or not).

link|improve this question

71% accept rate
1  
Where does the value of paneSelector come from? Can we have some HTML to go along with this? A jsFiddle would be fantastic. – Anthony Grist Feb 8 at 14:22
What does a console.log(event) and console.log(ui) return ? I think you binded to an event while the selection is made, and not after it's completed. – FMaz008 Feb 8 at 14:24
As for the possible duplicate - well, maybe. But it's not an exact duplicate, it's awfully worded and doesn't have any useful (or accepted) answers - even if they are duplicates, this question is potentially going to be much more useful for others in the future. – Anthony Grist Feb 8 at 14:28
@AnthonyGrist - changed paneSelector to "#myTabControl". I assumed this was a default behavior. I'll try to come up with a sscce when I get a chance. – ripper234 Feb 8 at 15:05
Take a look at @Didier's answer, he provided a working sscce. – ripper234 Feb 8 at 15:07
feedback

1 Answer

up vote 1 down vote accepted

The select event is fired when you click on a tab button. At that moment, the tab has not yet changed.

You should use the show event:

$(paneSelector).tabs({
    show: function(e, ui) {
        var selectedTabName = $(paneSelector).find(".ui-tabs-selected span").text();
    }
});

DEMO

link|improve this answer
Duh, I should have made an answer instead of a comment. – FMaz008 Feb 8 at 14:31
@FMaz008 - to the victor goes the spoils. – ripper234 Feb 8 at 15:07
@ripper234 hehe :p – FMaz008 Feb 8 at 15:35
feedback

Your Answer

 
or
required, but never shown

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