Skip to content

Instantly share code, notes, and snippets.

@skipjac
Last active August 29, 2015 13:57
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 skipjac/9814641 to your computer and use it in GitHub Desktop.
Save skipjac/9814641 to your computer and use it in GitHub Desktop.
get the zendesk article votes and add them to the subject line
var api = document.location.pathname + '.json';
if (api.indexOf('entries') !== -1){
$j.getJSON(api, function(data){
var currentTitle = $j('h3.entry-title').text()
$j('h3.entry-title').text(currentTitle + ' ('+data.votes_count+ ' votes)');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment