I would like to use an external javascript file in another javascript file. For example, I could store all my global variables in a globals.js file and then call then from t
You can also do something like this:
$(document).ready(function(){ $('body').append($('')); });
Just use that line before you need to reference something in the included js file.