Skip to content

Instantly share code, notes, and snippets.

@pineoc
Last active December 31, 2019 06:12
Show Gist options
  • Save pineoc/7ddeb20afbbe8c374fb5da321f8ae93e to your computer and use it in GitHub Desktop.
Save pineoc/7ddeb20afbbe8c374fb5da321f8ae93e to your computer and use it in GitHub Desktop.
Jira Project check js scripts
// View Field Configuration page
// https://jira.example.com/secure/admin/ConfigureFieldLayout!default.jspa?id=xxxxx
var tbodyRows = document.querySelector("#field_table tbody").rows;
var tbodyArr = Array.prototype.slice.call(tbodyRows);
// used field
var usedField = tbodyArr.filter(e => {
return e.cells[2].innerText.indexOf("Hide") != -1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment