Open In App

HTML DOM Input Image name Property

The HTML DOM Input Image name Property is used for setting or returning the value of the name attribute of the Input Image. The name Attribute is used to reference the form-data after submitting the form or to reference the element in JavaScript. 

Syntax: 



imageObject.name
imageObject.name=name

Property Values: Accepts a single parameter name and it specifies the name of the Input Image. 

Return Value: It returns a string value that represents the name of the Input Image.



Example 1: This program illustrates how to return the name Property. 




<!DOCTYPE html>
<html>
   
<head>
    <title>
        HTML DOM Input Image name Property
    </title>
</head>
   
<body style="text-align:center;">
    <h1 style="color:green;">
      GeeksforGeeks
    </h1>
    <h4>
      DOM Input Image name Property
    </h4>
    <button onclick="my_geek()">
        <input id="myImage" name="myGeeks" type="image"
               src=
               alt="Submit" formaction="#" a formtarget="#"
               formenctype="text/plain" width="48" height="48">
    </button>
    <h2 id="Geek_h" style="color:green;"></h2>
   
    <script>
        function my_geek() {
            // Return the name of the Input Image Field
            let txt = document.getElementById(
                "myImage").name;
            document.getElementById("Geek_h").innerHTML = txt;
        }
    </script>
</body>
   
</html>

Output: 

 

Example 2: This Example illustrates how to sets the name Property. 




<!DOCTYPE html>
<html>
   
<head>
    <title>
        HTML DOM Input Image name Property
    </title>
</head>
   
<body style="text-align:center;">
    <h1 style="color:green;">
      GeeksforGeeks
    </h1>
    <h4>
      DOM Input Image name Property
    </h4>
    <button onclick="my_geek()">
        <input id="myImage" name="myGeeks" type="image"
               src=
               alt="Submit" formaction="#" a formtarget="#"
               formenctype="text/plain" width="48" height="48">
    </button>
    <h2 id="Geek_h" style="color:green;"></h2>
   
    <script>
        function my_geek() {
             // set the name of the Input Image Field
            let txt = document.getElementById(
                "myImage").name =
                "The value of the name attribute was changed to "
                                                  + "Hello Geeks";
            document.getElementById("Geek_h").innerHTML = txt;
        }
    </script>
</body>
   
</html>

Output: 

 

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


Article Tags :