Open In App

HTML DOM IFrame src Property

The HTML DOM IFrame src Property is used to set or return the value of the src attribute of the <iframe> element. This attribute is used to specify the URL of the document that is embedded in the iframe element.

Syntax: 



iframeObject.src
iframeObject.src = URL 

Property Values: It contains a single value URL that specifies the URL of the document that is embedded in the iframe. There are two types of URL links which are listed below:  

Return value: It returns a string value that represents the URL of the document that is embedded in the Iframe Element.



Example 1: This Example illustrates how to return the Iframe src Property.  




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM iframe src Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <h2>
        HTML DOM iframe src Property
    </h2>
    <iframe src=
            id="GFG" height="200"
            width="400">
    </iframe>
    <br>
    <br>
    <button onclick="Geeks()">
          Submit
      </button>
    <p id="sudo"></p>
 
    <script>
        function Geeks() {
            let x =
                document.getElementById("GFG").src;
            document.getElementById("sudo").innerHTML = x;
        }
    </script>
</body>
 
</html>

Output: 

Example 2: This Example illustrates how to set the Iframe src Property. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM iframe src Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <h2>
        HTML DOM iframe src Property
    </h2>
    <iframe src=
            id="GFG" height="200"
            width="400">
    </iframe>
    <br>
    <br>
    <button onclick="Geeks()">
        Submit
    </button>
    <p id="sudo"></p>
 
    <script>
        function Geeks() {
            let x =
                document.getElementById("GFG").src =
                "https://ide.geeksforgeeks.org/online-cpp14-compiler";
        }
    </script>
</body>
 
</html>

Output: 

Supported Browsers: The browsers supported by HTML DOM IFrame src Property are listed below:  


Article Tags :