Skip to content

Instantly share code, notes, and snippets.

@he7d3r
Last active March 9, 2022 21:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save he7d3r/b5f300904efffa51a67db27ec673d582 to your computer and use it in GitHub Desktop.
Save he7d3r/b5f300904efffa51a67db27ec673d582 to your computer and use it in GitHub Desktop.
A bookmarklet to hide/show empty columns on Jira

Hide/show empty columns on Jira

Usage

  1. Copy the code below to a bookmarklet generator site such as https://caiorss.github.io/bookmarklet-maker/
  2. Add the generated bookmarklet to your favorites
  3. Open a Jira board where some columns are empty
  4. Click on the bookmark to toggle the visibility of these columns
(function() {
$headers = $('#ghx-column-headers .ghx-column');
$cols = $('.ghx-swimlane .ghx-column');
$cols.each(function(i) {
if ($(this).text() == '') {
$(this).toggle();
$headers.eq(i).toggle();
}
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment