-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,734
  • 9
  • 41
  • 60

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
  • 965
  • 2
  • 10
  • 25