The HTMLFormElement.action
property represents the action of the <form>
element.
The action of a form is the program that is executed on the server when the form is submitted. This property can be retrieved or set.
string = form.action form.action = string
form.action = "/cgi-bin/publish";
HTML 5, Section 4.10.19.6, Form submission
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/action