Hello,
Unfortunately, this functionality is not included with the Default Codes and further Customization would be required for this. As a recommendation, consider using the Cookie JS functionality to detect the Tab selected and save the value in a Cookie. Then on Page refresh check and activate the Tab according to the Cookie Value.
The Cookie and Tabs Plugins are already included within Canvas, so you don't need to add them separately. Simply use their API Options from here:
Cookie: https://github.com/js-cookie/js-cookie .
jQuery UI Tabs: https://api.jqueryui.com/tabs/ .
Example:
$( ".tabs" ).on( "tabsactivate", function( event, ui ) {
var tabValue = $( ui.newTab ).attr('href');
// Save the Value in a Cookie
} );
jQuery(window).on( 'load', function(){
// Check Cookie Value and set the Tab
if( Cookie has Value? ) {
$( ".tabs" ).tabs( "enable", cookieValue );
}
});
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.