Skip to content

Instantly share code, notes, and snippets.

@paulschreiber
Created May 27, 2015 14:56
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 paulschreiber/617bf4a51bd710c2275e to your computer and use it in GitHub Desktop.
Save paulschreiber/617bf4a51bd710c2275e to your computer and use it in GitHub Desktop.
ZenDesk ticket summarizer
jQuery('script').each(function(index, element) {
v = jQuery(this).text().match("(?:Task|Problem|Question|Incident|Ticket) #([0-9]+).+\closed..(normal|high|low|urgent)");
if (v) {
console.log(v[1],v[2]);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment