Action Attribute


The Action Attribute

The action attribute defines the action to be performed when the form is submitted.

Usually, the form data is sent to a file on the server when the user clicks on the submit button.

In the example below, the form data is sent to a file called "action_page.php". This file contains a server-side script that handles the form data:


Live Demo & Try it yourself! Read More » »

The Target Attribute


The target attribute specifies where to display the response that is received after submitting the form.

The target attribute can have one of the following values:

 

Value Description
_blank The response is displayed in a new window or tab
_self The response is displayed in the current window
_parent The response is displayed in the parent frame
_top The response is displayed in the full body of the window
framename The response is displayed in a named iframe

The default value is _self which means that the response will open in the current window.


Live Demo & Try it yourself! Read More » »

The Method Attribute using the GET method


The method attribute specifies the HTTP method to be used when submitting the form data.

The form-data can be sent as URL variables (with method="get") or as HTTP post transaction (with method="post").

The default HTTP method when submitting form data is GET. 


Live Demo & Try it yourself! Read More » »

The Method Attribute using the POST method


This example uses the POST method when submitting the form data:


Live Demo & Try it yourself! Read More » »

The Autocomplete Attribute


The autocomplete attribute specifies whether a form should have autocomplete on or off.

When autocomplete is on, the browser automatically complete values based on values that the user has entered before.


Live Demo & Try it yourself! Read More » »

The Novalidate Attribute


The novalidate attribute is a boolean attribute.

When present, it specifies that the form-data (input) should not be validated when submitted.


Live Demo & Try it yourself! Read More » »