In Issue navigator section javascript is not working

Hi Team,

I have created one web item its location in jira.issue.tool section.

On click of this web item, I have configured Javascript and on the issue view screen this javascript is working fine but when in issue navigator section (Project side panel on click of Issues) this javascript is not working.

JS Web Resource Definition in Atlassian-plugin.xml file

<context>atl.general</context>
<context>jira.navigator.advanced</context>
 <context>jira.navigator.simple</context>

Web item define is Atlassian-plugin.xml file

Testing

Java script Code is below

AJS.toInit(function()
{
alert(“INIT DONE”);
AJS.$(’#mywebitem’).click(function()
{
alert(“SARIKA123-0000”);
});
});

Please give me a suggestion here about what I am missing here.

Trying from 2 days Nothing is working here.