Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way of making these tabs persist?

http://twitter.github.com/bootstrap/javascript.html#tabs

To add some context, this is for a rails application. I'm passing an array [tab1, tab2] to my view, rendering both tabs and using the bootstrap tab plugin to toggle their visibility.

share|improve this question
are using any server side language like php? – DG3 Mar 13 '12 at 14:27
using rails and the twitter-bootstrap-rails gem – DanS Mar 13 '12 at 14:58
can't you use a URL variable during the page refresh, and make it default using rails? – DG3 Mar 13 '12 at 15:15

3 Answers

up vote 22 down vote accepted

This code selects the right tab depending on the #hash and adds the right #hash when a tab is clicked. (this uses jquery)

In Coffeescript :

$(document).ready ->
    if location.hash != ''
        $('a[href="'+location.hash+'"]').tab('show')

    $('a[data-toggle="tab"]').on 'shown', (e) ->
        location.hash = $(e.target).attr('href').substr(1)

or in JS :

$(document).ready(function() {
    if (location.hash !== '') $('a[href="' + location.hash + '"]').tab('show');
    return $('a[data-toggle="tab"]').on('shown', function(e) {
      return location.hash = $(e.target).attr('href').substr(1);
    });
});
share|improve this answer
Thanks much for this answer. I made some tweaks to it in order to avoid two issues: 1) Switching tabs was adding to navigation history and 2) Scroll position was lost on back nav due to fragment navigation. gist.github.com/josheinstein/5586469 – Josh Einstein May 15 at 19:09

Here is another way to solve the Problem.

Fist add a line to the click event to show the hash in the Addressbar

$('#myTab').on('click', 'a', function (e) {
  e.preventDefault();
  // add this line
  window.location.hash = $(this).attr('href');
  $(this).tab('show');
})

Then make sure that the right tab is activated onload by adding this part to your document ready call.

if(window.location.hash){
   $('#myTab').find('a[href="'+window.location.hash+'"]').tab('show');
}

All together you can write this:

// cache the id
var navbox = $('#myTab');
// activate tab on click
navbox.find('a').click(function (e) {
  // prevent the Default behavior
  e.preventDefault();
  // set the hash to the address bar
  window.location.hash = $(this).attr('href');
  // activate the clicked tab
  $(this).tab('show');
})

// if we have a hash in the address bar
if(window.location.hash){
  // show right tab on load (read hash from address bar)
  navbox.find('a[href="'+window.location.hash+'"]').tab('show');
}
share|improve this answer

You can get the URL fragment (that's the part of the URL after #) on load using window.location.hash, and specifically set that tab as visible:

if (window.location.hash) {
    $(window.location.hash).tab('show')
}
share|improve this answer
The hash won't be sent to the server, so not sure how i'd use this on it's own. – DanS Mar 13 '12 at 20:10
It won't be sent to the server as it has no need to be - the example above is javascript. For example, if you have an a element which sends the browser to yoursite.com/about#company the #company tab will be displayed. On refresh, the URL will be checked for a fragment, and if there is one will display the tab with the matching id by default. – Rory McCrossan Mar 13 '12 at 20:59
I edited my question to remove the 'persist a refresh' as it was misleading. My real problem is that I have pagination links and when I change page in tab2 it reverts back to tab1 – DanS Mar 13 '12 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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