Skip to content

Instantly share code, notes, and snippets.

@JadedEvan
Created October 13, 2020 09:31
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 JadedEvan/0bdcfbe15d74cefce04cf2aa08c8997d to your computer and use it in GitHub Desktop.
Save JadedEvan/0bdcfbe15d74cefce04cf2aa08c8997d to your computer and use it in GitHub Desktop.
Javascript snippet to add up the total of story points for a Jira issue search
var total=0;$('#issuetable .issuerow .customfield_10025').each(function(index){if(this.innerText != ''){total += parseInt(this.innerText)}});console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment