Open In App

HTML | DOM embed width property

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

Syntax:



embedObject.width
embedObject.width = pixels

Property Values:

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



Example: 




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

Output: Before clicking the button:

  

After clicking the button:

 

Example: 




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML DOM Embed width 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 idwidth =
                document.getElementById("embedID").width=400;
 
                document.getElementById("pid").innerHTML
                     = idwidth;
            }
        </script>
    </center>
</body>
 
</html>

Output: Before clicking the button:

  

After clicking the button:

  

Supported Browsers: The browsers supported by DOM embed width property is listed below:


Article Tags :