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
Asked
Active
Viewed 71 times
-1
-
1Why is this tagged with "Java"? I can not see any relation to "Java". – Korashen Jul 29 '14 at 14:14
-
1Well, the Java-Tag has been removed, so I will also remove my downvote. – Korashen Jul 29 '14 at 14:17
1 Answers
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