Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Input Image formAction Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Input Image formAction Property in HTML DOM is used for setting or returning the value of the formAction Attribute of an Input Image. After submission of the form the formAction attribute called. The form data is to be sent to the server after submission of the form. It overrides the feature of the action attribute of a <form> element.

Syntax:

  • It returns the formAction property.
imageObject.formAction
  • It is used to set the formAction property.
imageObject.formAction = URL 

Property values: It contains single value URL which is used to specify the URL of the document where the data to be sent after submission of form.

  • absolute URL: It points to the full address of a page. For example: www.geeksforgeeks.org/data-structure
  • relative URL: It is used to point to a file within in a webpage. For Example: gfg.php

Return value: It returns a string value which represent the URL of the form. 

Example 1: This Example illustrate how to return the formAction Property. 

HTML




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

Output:

  • Before Clicking On Button:

 

  • After Clicking On Button:

 

Example 2: This Example illustrate how to set the formAction Property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Image formAction Property
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
         GeeksforGeeks
    </h1>
    <h4>
         DOM Input Image formAction Property
    </h4>
    <button onclick="my_geek()">
        <input id="myImage" type="image" formAction="test.php" src=
               alt="Submit" width="48" height="48" formMethod="post"
               formNoValidate>
    </button>
    <h2 id="Geek_h" style="color:green;"></h2>
    <script>
        function my_geek() {
 
            // Set the Input Image formAction Property
            var txt = document.getElementById(
                "myImage").formAction = "www.geeksforgeeks.org";
            document.getElementById(
                "Geek_h").innerHTML = "The formAction was changed to "
                 + txt;
        }
    </script>
</body>
</html>

Output:

  • Before Clicking On Button:

 

  • After Clicking On Button: 

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

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

My Personal Notes arrow_drop_up
Last Updated : 26 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials