Tabs Bookmarked with Direct Link

Tabs Bookmarked with Direct Link

Hello, thanks for any and all help.  My jquery tabs code is below. I need to add the ability for tabs to be directly linked from outside pages to the hashed url.

jQuery(document).ready( function () {
     jQuery( '.tabs .tab-links a' ).on( 'click' , function (e)  {
         var currentAttrValue = jQuery( this ).attr( 'href' );
 
         // Show/Hide Tabs
         jQuery( '.tabs ' + currentAttrValue).show().siblings().hide();
 
         // Change/remove current tab to active
         jQuery( this ).parent( 'li' ).addClass( 'active' ).siblings().removeClass( 'active' );
 
         e.preventDefault();
     });
});