Skip to content
Related Articles
Open in App
Not now

Related Articles

How to include a JavaScript file in another JavaScript file ?

Improve Article
Save Article
Like Article
  • Difficulty Level : Hard
  • Last Updated : 26 Dec, 2022
Improve Article
Save Article
Like Article

In native JavaScript, before ES6 Modules 2015 has been introduced had no import, include, or require, functionalities. Before that, we can load a JavaScript file into another JavaScript file using a script tag inside the DOM that script will be downloaded and executed immediately. Now after the invention of ES6 modules there are so many different approaches to solve this problem have been developed and discussed below. ES6 Modules: ECMAScript (ES6) modules have been supported in Node.js since v8.5. In this module, we define exported functions in one file and import them in another example. There are two popular ways to call a JavaScript file from another function those are listed below:

  • Ajax Techniques
  • Concatenate files

Ajax Techniques Example:

External JavaScript file named “main.js” 

javascript




// This alert will export in the main file
alert("Hello Geeks")


Main file: This file will import the above “main.js” file 

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Calling JavaScript file from
        another JavaScript file
    </title>
      
    <script type="text/javascript">
        var script = document.createElement('script');
          
        script.src =
          
        document.head.appendChild(script)
    </script>
</head>
  
<body>
</body>
  
</html>


Output:

 

Concatenate files Example: Here importing multiple JavaScript files into a single JavaScript file and calling that master JavaScript file from a function.

External JavaScript file named as “main.js” 

javascript




// This alert will export in the main file
alert("Hello Geeks")


External JavaScript file “second.js” 

javascript




// This alert will export in the main file
alert("Welcome to Geeksforgeeks")


External JavaScript file “master.js” 

javascript




<script>
    function include(file) {
      
    var script = document.createElement('script');
    script.src = file;
    script.type = 'text/javascript';
    script.defer = true;
      
    document.getElementsByTagName('head').item(0).appendChild(script);
      
    }
      
    /* Include Many js files */
</script>


Main file: This file will import the above “master.js” file 

javascript




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Calling JavaScript file from
        another JavaScript file
    </title>
      
    <script type="text/javascript"
    </script>
</head>
  
<body>
</body>
</html>        


Output: main.js file import:

  

second.js file import:

 


My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!