Created
July 17, 2019 16:25
-
-
Save neodigm/5d8c10c1d8d63a93622c0c9111337420 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; // Act on Tab when link clicked | |
var oTb, oLk; | |
oTb = document.querySelectorAll(".tablink4")[0]; | |
oLk = document.querySelectorAll("[href='/#tablink4']")[0]; | |
if( oTb && oLk ){ | |
oLk.addEventListener( "click", function(e){ | |
oTb.click(); | |
} ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment