How do I import a script from one JavaScript file into another JavaScript file
For example, it "file1.js" has a function called "doStuff()", I want to do something like this in "file2.js":
"file1.js".doStuff();
How do i do that
How do I import a script from one JavaScript file into another JavaScript file
For example, it "file1.js" has a function called "doStuff()", I want to do something like this in "file2.js":
"file1.js".doStuff();
How do i do that
javaScript code import
skt
I think I've found what I'm looking for:
http://ajile.iskitz.com/