HTML | DOM Form action Property
The Form action property in HTML DOM is used to set or return the value of the action attribute of the Form. After submission of form the action attribute called. The form data is to be sent to the server after submission of form.
Syntax:
- It is used to return the action property.
formObject.action
- It is used to set the action property.
formObject.action = URL
- URL: It is used to specify the URL of the document where the data to be sent after submission of form.
The possible value of URL are:- absolute URL: It points to another website link . For Example: www.gfg.org
- relative URL: It is used to point to a file within in a webpage. For Example: www.geeksforgeeks.org
- Google Chrome 1 and above
- Edge 12 and above
- Firefox 1 and above
- Opera 12.1 and above
- Safari 3 and above
Property Values:
Return Value: It returns a string value which represent the URL of the form.
Example 1: This example describes how to set action property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Form action Property </ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM Form action Property</ h2 > < form action = "#" method = "post" id = "users" > < label for = "username" >Username:</ label > < input type = "text" name = "username" id = "Username" > < br >< br > < label for = "password" >Paswword :</ label > < input type = "password" name = "password" > </ form > < br > < button onclick = "myGeeks()" > Submit </ button > < p id = "GFG" ></ p > <!-- script to set action page --> < script > function myGeeks() { var x = document.getElementById("users").action = "/gfg.php"; document.getElementById("GFG").innerHTML = "Action page Changed"; } </ script > </ body > </ html > |
Output:
Before Click on the Button:
After Click on the Button:
Example 2: This example returns the action property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Form action Property </ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM Form action Property</ h2 > < form action = "test.php" method = "post" id = "users" > < label for = "username" >Username:</ label > < input type = "text" name = "username" id = "Username" > < br >< br > < label for = "password" >Paswword :</ label > < input type = "password" name = "password" > </ form > < br > < button onclick = "myGeeks()" > Submit </ button > < p id = "GFG" ></ p > <!-- script to return the the URL where send the form data --> < script > function myGeeks() { var act = document.getElementById("users").action; document.getElementById("GFG").innerHTML = act; } </ script > </ body > </ html > |
Output:
Before Click on the Button:
After Click on the Button:
Supported Browsers: The browser supported by DOM Form action property are listed below:
Please Login to comment...