Skip to content

Instantly share code, notes, and snippets.

@abhivaikar
Last active September 23, 2017 18:45
Show Gist options
  • Save abhivaikar/749f2e5970a7dfc527d7b765dc51912d to your computer and use it in GitHub Desktop.
Save abhivaikar/749f2e5970a7dfc527d7b765dc51912d to your computer and use it in GitHub Desktop.
bookmarklet code for JIRA issue
javascript:(function() { var jiraBaseURL = "https://yourjiradomain.com/jira/browse/"; var issueId = prompt("Enter your JIRA issue ID"); if(issueId) {window.open(jiraBaseURL+issueId); } else return })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment