The autocomplete
attribute determines whether a form should have autocomplete enabled or disabled.
When autocomplete is enabled, the browser automatically fills in values based on the user’s previous entries.
Example
A form with autocomplete enabled:
<form action=”/action_page.php” autocomplete=”on”> |
The novalidate
attribute is a boolean attribute.
When included, it indicates that the form data should not be validated upon submission.
Example
A form with the novalidate
attribute:
<form action=”/action_page.php” novalidate> |