Okay
  Public Ticket #1195015
Tabset Navigation
Closed

Comments

  •  2
    Azhar started the conversation

    How can I navigate to other tab by some url.

    Currently I can navigate only to first page on first click

  • [deleted] replied

    Hi 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.