I was creating a firefox extension. and I am including the jquery in the xul file as
<script type="application/x-javascript" src="libs/project/libs/jquery.js" />
followed by some other files which uses jquery
<script type="application/x-javascript" src="sample.js" />
<script type="application/x-javascript" src="sample2.js" />
.
.
.
but here I am getting some errors like
ReferenceError: jQuery is not defined
TypeError: a is undefined
ReferenceError: $ is not defined
what should I do ?