Created
January 19, 2023 23:39
-
-
Save carmoreira/589effa4380c4388fe21061368937ae7 to your computer and use it in GitHub Desktop.
Testomonials Showcsase hashtag filter select
This file contains 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
jQuery(document).ready(function(){ | |
var thishash = window.location.href.slice(window.location.href.indexOf('#') + 1); | |
var menuitem = 'ul#tts-filter-nav li:contains("'+thishash+'")'; | |
if(thishash.length && menuitem.length){ | |
jQuery(menuitem).click(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment