Hi there,
Ah, you mean VC native tabs? There are two kinds, from cornerstone tab integrated to VC, and the native tab. Would you mind providing the exact URL where these tabs are? For the meantime, you may change it to this
jQuery( function($) {
$(document).on('click', '.vc_tta-tab a', function() {
setTimeout( function() {
$(window).resize();
}, 350 );
} );
} );
jQuery(document).ready(function($) {
if ( $('html').hasClass('touchevents') ) {
$('.vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a').off('touchstart touchend');
}
});
var render_timeout = 0;
jQuery( document ).on('click', '.x-nav-tabs>li>a, .vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a', function() {
clearTimeout ( render_timeout );
render_timeout = setTimeout ( function() { jQuery(window).resize() ; }, 800);
} );
Thanks!