Skip to content

Instantly share code, notes, and snippets.

@midlan
Last active January 27, 2022 08:18
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 midlan/907f06000b95156725e1449dccb31f98 to your computer and use it in GitHub Desktop.
Save midlan/907f06000b95156725e1449dccb31f98 to your computer and use it in GitHub Desktop.
Bookmarklet to jump on JIRA issue in current tab. Make sure, you put your's JIRA workspace name.
javascript: (function() {
var issueCode = prompt('Issue code:');
if (issueCode) {
var url = 'https://<YOUR JIRA WORKSPACE>.atlassian.net/browse/' + issueCode.trim();
window.location.href = url; /*redirect*/
console.log('JIRA opened URL:', url);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment