Created on 24 February 2012, about 13 years ago
Updated 22 December 2024, 3 months ago

The code provides a js only solution to tab and accordion history, i.e. whichever quicktabs tab or accordion clicked will be remembered via cookie so when you refresh or navigate to other pages, the correct tab and accordion will be 'loaded' (virtually clicked).

  Drupal.behaviors.quicktabsHistory = {
    attach: function(context, settings) {
      // enable accordion memory
      $('.quick-accordion', context).each(function() {
        var id = $(this).attr('id');
        var accordion = $.cookie(id);

        if (accordion != '') {
          $(this).find('h3 a[href="' + accordion + '"]').click();
        }
        $(this).find('h3 a').click(function() {
          $.cookie(id, $(this).attr('href'));
        });
      });

      // enable tab memory
      $('.quicktabs-wrapper', context).each(function() {
        var id = $(this).attr('id');
        var tab = $.cookie(id);

        if (tab != '') {
          $(this).find('ul.quicktabs-tabs a#' + tab).click();
        }
        $(this).find('ul.quicktabs-tabs a').click(function() {
          $.cookie(id, $(this).attr('id'));
        });
      });
    }
  };

If you do not have script.js or an empty one, wrap the above code with

(function ($) {
  // the code above
})(jQuery);

Inspiration from similar D6 thread #354199: Remember last clicked tab β†’

✨ Feature request
Status

Closed: outdated

Version

3.0

Component

Code

Created by

πŸ‡²πŸ‡ΎMalaysia ckng

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    With D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue.

    If still an issue or needed for 4.0.x (latest branch) feel free to reopen

Production build 0.71.5 2024