Action

50% Complete (success)

<form action="#" method="..." id="..." class="..."> ... </form>

The action attribute is a link to a server-side script (i.e. a file on another computer, not the users computer). Typically this file is code file (php, javascript, python, java, etc) on a server that will do ‘something’ with the user data before returning information back to the browser.

NOTE: The value of the action attribute will always be an URL.