Forum Moderators: open
Anyway: I include a JavaScript file within the HTML as always thus:
<script src="/myscript.js" type="text/javascript"></script>
"myscript.js" requires functions from "mylibrary.js". I'd like to avoid adding another "<script>" tag to the HTML page; is it possible to do something like
include("/mylibrary.js");
from within "myscript.js"?