My code is:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="http://someothersite.com/external.js"></script>
external.js:
$("head").append(unescape(""));
Unfortunately, I get the following error when I include my external script:
Uncaught TypeError: $ is not a function
How to fix it? Please keep in mind that I cannot edit an external Javascript file as a third party.
source share