I had JIRA.Messages.showSuccessMsg in an Announcement Banner but not working in JIRA v6.4
Example. . .
<script >
var pathname = window.location.pathname;
if (pathname.indexOf("Dashboard.jspa") >= 0)
{
JIRA.Messages.showSuccessMsg('Some message here');
}
</script>
Is there a way to do this in JIRA 6.4?
If you're using JIRA Cloud you'll need to use https://developer.atlassian.com/static/connect/docs/latest/javascript/module-messages.html
so it would be something like
AP.require("messages", function(messages){ //create a message var message = messages.success('title', 'success message example'); });
Discover the teamwork and precision behind success on and off the track. See how this high-performing team makes the impossible possible. Be one of the first 100 customers to register for a chance to win 2 tickets to an Atlassian Williams 2026 race.
Register now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.