Open In App

HTML | DOM Object width Property

The DOM Object width Property in HTML DOM is used to set or return the width of the Object. The width attribute is used to specify the width of an Object.

Syntax: 



objObject.width
objObject.width = pixels

Property Values: It contains the value i.e pixel which specifies the width of the object in terms of the pixel.

Return Value: It returns a numeric value that represents the width of the object in terms of the pixel.



Example-1: This Example returns a width Property.  




<!DOCTYPE html>
<html>
<body>
    <center>
        <object id="myobject"
                width="400"
                data=
        </object>
        <h2>
          DOM Object width Property
          </h2>
         
<p>
          Click the button to get
          the width of the embedded file.
          </p>
 
        <button onclick="Geeks()">
            Click it
        </button>
        <p id="gfg"
           style="color:green;
                  font-size:25px;">
          </p>
 
    </center>
    <script>
        function Geeks() {
 
            // return object width property
            var x =
                document.getElementById(
                    "myobject").width;
 
            document.getElementById(
                "gfg").innerHTML = x;
        }
    </script>
</body>
</html>

Output: 

Before Clicking On Button: 

After Clicking On Button:  

Example-2: This Example sets the width Property.  




<!DOCTYPE html>
<html>
<body>
    <center>
        <object id="myobject"
                width="400"
                data=
        </object>
        <h2>
          DOM Object width Property
          </h2>
         
<p>
          Click the button to get
          the width of the embedded file.
          </p>
 
        <button onclick="Geeks()">
            Click it
        </button>
 
        <p id="gfg"
           style="color:green;
                  font-size:25px;">
          </p>
 
    </center>
    <script>
        function Geeks() {
 
            // set object width property
            var x =
                document.getElementById(
                    "myobject").width = "500";
 
            document.getElementById(
                "gfg").innerHTML =
              "The value of the width "+
              "attribute was changed to " + x;
        }
    </script>
</body>
</html>

Output: 

Before Clicking On Button: 

After Clicking On Button:  

Supported Browsers:  


Article Tags :