Open In App

HTML | DOM Input Image disabled Property

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML DOM Input Image disabled Property is used to set or return the boolean value that represents an image field should be disabled or not. By default, the disabled elements are displayed in gray and are unusable and unclickable. 

Syntax:

  • It returns the disabled property.
imageObject.disabled
  • It is used to set the disabled property.
imageObject.disabled = true|false

Property values: This property accepts two parameter which are mentioned above and described below:

  • true: It specifies the image field is disabled.
  • false: It specifies the image field is not disabled.

Return value: It returns a boolean value i.e. true if the image field is disabled or false if the image field is not disabled. 

Example 1: This example returns the value of disabled proper 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Image Disabled property
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
      GeeksforGeeks
    </h1>
    <h4>
      DOM Input Image Disabled Property
    </h4>
    <input id="myImage" formEnctype="application/x-www-form-urlencoded"
           type="image" formtarget="#" src=
           alt="Submit" width="48" height="48" formMethod="post"
           disabled>
    <br>
    <br>
    <button onclick="my_geek()">Submit </button>
 
    <h2 id="Geek_h" style="color:green;"></h2>
    <script>
        function my_geek() {
 
            // Return disabled Property
            var txt = document.getElementById(
                "myImage").disabled;
            document.getElementById(
                "Geek_h").innerHTML = txt;
        }
    </script>
</body>
 
</html>


Output:

  • Before Clicking On Button:

 

  • After Clicking On Button:

 

Example 2: This Example sets the value of the Disabled Property. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Image Disabled property
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
      GeeksforGeeks
    </h1>
 
    <h4>
      DOM Input Image Disabled Property
    </h4>
    <input id="myImage" formEnctype="application/x-www-form-urlencoded"
           type="image" formtarget="#" src=
           alt="Submit" width="48" height="48" formMethod="post"
           disabled>
    <br>
    <br>
    <button onclick="my_geek()">Submit </button>
 
    <h2 id="Geek_h" style="color:green;"></h2>
    <script>
        function my_geek() {
 
            // set Disabled Property.
            var txt = document.getElementById(
                "myImage").disabled = false;
            document.getElementById(
                "Geek_h").innerHTML = txt;
        }
    </script>
</body>
 
</html>


Output:

  • Before Clicking On Button:

 

  • After Clicking On Button:

 

Supported Browsers: The browsers supported by HTML DOM Input Image disabled Property are listed below:

  • Google Chrome 
  • Edge 12
  • Firefox 
  • Opera 
  • Safari 


Last Updated : 30 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads