Open In App

HTML | DOM Input Image formEnctype Property

The Input Image formEnctype Property in HTML DOM is used to set or return the value of the Enctype Attribute of an Input Image. This attribute specifies the data that will be present in the form should be encoded when submitting to the server. This type of attribute can be used only if method = “POST”. It overrides the enctype attribute of a <form> element. 

Syntax: 



imageObject.formEnctype
imageObject.formEnctype = "application/x-www-form-urlencoded,
multipart/form-data, text/plain"

Return value: It returns a string value which represents the encoding type of the form data when sending it to the server.

Example 1: This example that illustrates how to return Input Image formEnctype Property.






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

 

 

Example 2: This Example illustrates how to set the formEnctype Property.




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Image formEnctype
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
    GeeksforGeeks
    </h1>
    <h4>
    DOM Input Image formEnctype Property
    </h4>
    <button onclick="my_geek()">
        <input id="myImage" formEnctype="application/x-www-form-urlencoded"
            type="image" formtarget="#" src=
            alt="Submit" width="48" height="48" formMethod="post"
        formNoValidate>
    </button>
    <h2 id="Geek_h" style="color:green;"></h2>
    <script>
        function my_geek() {
 
            // Return target, alt and height.
            var txt = document.getElementById(
                "myImage").formEnctype = "text/plan";
            document.getElementById(
                "Geek_h").innerHTML =
            "The value of the formEnctype Attribute was changed to "
            + txt;
        }
    </script>
</body>
</html>

 

 

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


Article Tags :