Open In App
Related Articles

HTML DOM importNode() Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML | DOM importNode() Method creates a copy of a node from another document and imports it to the current document. 

Syntax: 

document.importNode(externalNode, [deep])

Parameters:

  • externalNode: Node which we need to import from another document, it can be of any type.
  • [deep]: We can set its value to “true” if we want to copy the node along with its attributes and child nodes and “false” if we want to copy the node and its attributes only. If we do not specify any argument, then the value of deep is taken as “true” by default.

Example-1: 

html




<!DOCTYPE html>
<html>
  
<body>
  
    <!-- iframe is used to create a new frame inside
     our current document and merge another document into it-->
    <!-- you can put your own source in iframe src -->
    <iframe src="D:\Normalize() Method\Normalize.html" 
            style="height:380px;width:520px;"></iframe>
    
    <button onclick="myNode()">Try it</button>
  
    <script>
        function myNode() {
  
            // accessing the iframe using frame variable
            var frame = document.getElementsByTagName("IFRAME")[0]
  
            // here we are accessing the <h1> element from 
            // the document contained inside the iframe.
            var geek = 
                frame.contentWindow.document.getElementsByTagName("H1")[0];
              
            // applying importNode() method adding 
            //imported node to our original document.
            var gfg = document.importNode(geek, true);
            document.body.appendChild(gfg);
        }
    </script>
  
</body>
  
</html>


Output: 

Before:

  

After:

  

Example-2: 

html




<!DOCTYPE html>
<html>
  
<body>
  
    <iframe src="D:\HTML nodeClone().html" 
            style="height:380px;width:520px;"></iframe>
  
    <button onclick="myImport()">Try it</button>
  
    <script>
        function myImport() {
            var frame = document.getElementsByTagName("IFRAME")[0]
  
            // here we are accessing the <div> element from the document 
            //contained inside the iframe
            var geek = 
                frame.contentWindow.document.getElementsByTagName("DIV")[0];
  
            var gfg = document.importNode(geek, true);
            document.body.appendChild(gfg);
        }
    </script>
  
</body>
  
</html>


Output: 

Before:

 

After:

  

Note: Internet explorer 8 and earlier does not support the importNode() method. 

Supported Browsers: Supported Browsers for HTML|DOM importNode() method are listed below.

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explore 9 and above
  • Firefox 1 and above
  • Opera 9 and above
  • Safari 1 and above

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 13 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials