Created
January 22, 2016 02:55
-
-
Save moderatorwes/c8b0e8ac42c45bfbb229 to your computer and use it in GitHub Desktop.
Zendesk: Make Humble Squid boxes clickable
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
//Humble Squid boxes clickable | |
$(".category-list li:has(a)").click(function() { | |
window.location = $("a:first",this).attr("href"); | |
}); | |
$(".category-list li").css('cursor', 'pointer'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment