---
title: HTMLFormElement.action
slug: Web/API/HTMLFormElement/action
translation_of: Web/API/HTMLFormElement/action
---
{{APIRef("HTML DOM")}}
La propriété **`HTMLFormElement.action`** représente l'action associée à l'élément {{HTMLElement("form")}}.
L'action d'un formulaire est le programme exécuté sur le serveur lorsque le formulaire est soumis. Cette propriété peut être récupérée ou définie.
## Syntaxe
string = form.action
form.action = string
## Exemple
form.action = "/cgi-bin/publish";
## Spécification
[HTML 5, Section 4.10.19.6, Form submission](http://www.w3.org/TR/html5/association-of-controls-and-forms.html#dom-fs-method)
[DOM Level 2 HTML: action](http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-74049184)