Open In App

HTML | DOM Input Image disabled Property

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:



imageObject.disabled
imageObject.disabled = true|false

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

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 




<!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:

 

 

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




<!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:

 

 

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


Article Tags :