Skip to content

Instantly share code, notes, and snippets.

@moderatorwes
Created October 17, 2014 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moderatorwes/22ecfc9beabc1a39070c to your computer and use it in GitHub Desktop.
Save moderatorwes/22ecfc9beabc1a39070c to your computer and use it in GitHub Desktop.
Zendesk: Change voting wording if article is in a certain category
//Change wording of voting controls if article is in a certain category
if ($('.breadcrumbs li:nth-child(2) :contains("Technical")').size() == 1) {
$('.article-vote-question').text("Do you like this");
}
else{
$('.article-vote-question').text("Was this article helpful");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment