- πΊπΈ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
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 β
Closed: outdated
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
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