Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Include a JavaScript file [duplicate]

Tags:

javascript

Possible Duplicates:
Include javascript file inside javascript file?
How do you dynamically load a javascript file? (Think C's #include)

Is there a way to include a JavaScript file from a .js file? You know: like how I link .css files at the top of a .css file.

xxx.js contains:

Some sort of @import yyy.js
followed by other js commands.
like image 332
Phillip Senn Avatar asked Nov 09 '10 19:11

Phillip Senn


2 Answers

No, there isn't. You either have to include it in the HTML or use JavaScript to create a <script> tag and attach it to the document.

like image 186
casablanca Avatar answered Oct 16 '22 06:10

casablanca


this is my workaround to do this:

if (typeof (jQuery) == "undefined") 
    document.write(unescape("%3Cscript src='" + server_url + "/js/jquery-1.4.2.min.js' type='text/javascript'%3E%3C/script%3E"));

of course, for anything other than jquery you'd have to figure out if you needed it or not then do the same with that file.

server_url needs to be set also.

here is a working example of this

http://my.digitalscout.com/Widgets/schedule.html

like image 23
John Boker Avatar answered Oct 16 '22 08:10

John Boker