-1

Is this possible to use $.getScript in firefox extension.When i am calling it from html it is working but from Js file not able to execute

DavidPostill
  • 7,453
  • 9
  • 38
  • 57

1 Answers1

0

You have to load jQuery before using it's methods. So, instead of having

<script src="myScript.js"></script>
<script src="jquery.js"></script>

you should have

<script src="jquery.js"></script>
<script src="myScript.js"></script>
lucasreta
  • 980
  • 2
  • 8
  • 23