W3cubDocs

/DOM

HTMLFormElement.action

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.

Syntax

string = form.action
form.action = string

Example

form.action = "/cgi-bin/publish";

Specification

HTML 5, Section 4.10.19.6, Form submission

DOM Level 2 HTML: action

© 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