Open In App

HTML | DOM Object data Property

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML | DOM Object data Property is used to set or return the value of the data attribute of an <object> element. The data attribute is used to specify the URL of the resource which will be used by the object.
Syntax: 

  • Return the data property. 
objObject.data
  • It is used to set the data property. 
objObject.data = URL

Property Values: It contains the value i.e URL which specifies the URL of the resource. 

  • Absolute URL: It is used to point another website.
  • Relative URL: It points to link within a website.

Return Value: It returns a String that represents the object URL. Returns the full URL, including the protocol (like http://)

Example: This Example returns a data Property. 

HTML




<!DOCTYPE html>
<html>
<body>
    <center>
        <object id="myobject"
                data="HelloGeeks.swf"
                width="400"
                height="100"
                name="myGeeks"
                form="myGeeks"
                data=
          </object>
        <h2>DOM Object data Property</h2>
        <button onclick="Geeks()">
            Click it
        </button>
        <p id="gfg"
           style="color:green;
                  font-size:25px;">
          </p>
 
    </center>
    <script>
        function Geeks() {
 
            // return object data type Property
            var x =
                document.getElementById(
                    "myobject").data;
 
            document.getElementById(
                "gfg").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 
Before Clicking On Button: 

After Clicking On Button: 

Supported Browsers: 

  • Google Chrome 
  • Mozilla Firefox 
  • Edge 
  • Safari 
  • Opera 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads