Open In App

HTML | DOM embed height property

The embed height property in HTML DOM is used to set or return the value of the height attribute. The height attribute defines the height of the embedded content in terms of pixels. 

Syntax:



embedObject.height
embedObject.height = pixels

Property Values:

Return value: It returns a number to show the height of embedded content. 



Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Embed height Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <embed id="embedID" height="400"
            src="https://ide.geeksforgeeks.org">
        <br>
         
        <button onclick="GFGfun()">
            Try it
        </button>
 
        <p id="pid"></p>
 
        <script>
            function GFGfun() {
                var idheight =
                document.getElementById("embedID").height;
                 
                document.getElementById("pid").innerHTML
                        = idheight;
            }
        </script>
    </center>
</body>
 
</html>

Output: Before click on button:

  

After click on button:

  

Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Embed height Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <embed id="embedID"
            src="https://ide.geeksforgeeks.org">
        <br>
 
        <button onclick="GFGfun()">
            Try it
        </button>
 
        <p id="pid"></p>
 
        <script>
            function GFGfun() {
                var idheight =
                document.getElementById("embedID").height
                        = 400;
                 
                document.getElementById("pid").innerHTML
                        = idheight;
            }
        </script>
    </center>
</body>
 
</html>

Output:

Before clicking the button:

 

After clicking the button:

 

Supported Browsers: The browsers supported by DOM embed height property are listed below:


Article Tags :