Comments 2Azhar started the conversationJune 5, 2017 at 6:19amHow can I navigate to other tab by some url.Currently I can navigate only to first page on first click[deleted] repliedJune 5, 2017 at 10:57amHi Azhar,I suggest you to add this JS snippet to add support for custom URLs in tabsets: jQuery( 'body' ).on( 'click', '.nav-tabs li a', function( ev ) { var $a = jQuery( this ); if ( $a.attr( 'href' ).match( /^https?/ ) ) { window.location.href = $a.attr( 'href' ); return false; } } ); Then you can add custom link for tabs. Sign in to reply ...
How can I navigate to other tab by some url.
Currently I can navigate only to first page on first click
Hi Azhar,
I suggest you to add this JS snippet to add support for custom URLs in tabsets:
Then you can add custom link for tabs.