Jan
Jan

Reputation: 41

TypeError: $ is not a function in SonarQube 5.0 - 'link to JIRA'

In sonar the 'Link to Jira' is not working. Nothing happens when I click the click and the HTML debug window shows:

TypeError: $ is not a function

Is this a known issue for Sonar 5.0? This seems unrelated to the JIRA plugin itself.

Upvotes: 0

Views: 250

Answers (1)

Shreeram K
Shreeram K

Reputation: 1747

That means jquery is not loaded. Add below code in your html tag before using jquery in your code.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

Upvotes: 1

Related Questions