Friday, October 24, 2025
HomeLanguagesJavascriptHow to navigate URL in an iframe with JavaScript ?

How to navigate URL in an iframe with JavaScript ?

To navigate URL in iframe with JavaScript, we have to set the src attribute or return the value of src attribute in an iframe element. The src attribute defines the URL of document that can be shown in an iframe.

Syntax:

document.getElementById("selector").src = "URL";

URL values: The possible values of URLs are –

  • Absolute URL: It points to another website (For example: https://www.geeksforgeeks.org/c-plus-plus/).
  • Relative URL: It points to a file within a website (For example: /gfg.php).

Return value: It returns the complete url of the document that is embedded in the iframe.

 

Example 1: Below is the code that illustrates using Absolute URL.

HTML




<!DOCTYPE html>
<html>
  
<body style="text-align:center;">
    <iframe id="gfgFrame" src="" 
        style="height: 50vh; width: 600px;">
    </iframe>
  
    <p>Click to visit GeeksForGeeks website</p>
  
    <button onclick="navigate()">
        Click it
    </button>
  
    <script>
        function navigate() {
            document.getElementById("gfgFrame").src
                = "https://www.geeksforgeeks.org/";
        }
    </script>
</body>
  
</html>


Output:

Example 2: Below is the code that illustrates the Relative URL.

HTML




<!DOCTYPE html>
<html>
  
<body style="text-align:center;">
    <iframe id="gfgFrame" src="" 
        style="height: 50vh; width: 600px;">
    </iframe>
    <br>
  
    <button onclick="navigate()">
        Click it
    </button>
  
    <script>
        function navigate() {
            document.getElementById
                ("gfgFrame").src = "home.html";
        }
    </script>
</body>
  
</html>


Output:

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS