limanza

form :

The autocomplete attribute specifies whether a form or input field should have autocomplete on or off. When autocomplete is on, the browser automatically complete values based on values that the user has entered before. Tip: It is possible to have autocomplete "on" for the form, and "off" for specific input fields, or vice versa. The autocomplete attribute works with

and the following types: text, search, url, tel, email, password, datepickers, range, and color.

Example
<form id="form1" >
      First name:<input type="text" name="fname"><br />
     <input type="submit" value="form1" >
</form>
<p>this control is out </p>

      E-mail: <input type="email" name="email"  form="form1"><br />
code
First name : 

 

this form is out of control section

E-mail        : 
output

 

Copyright 2014. All rights reserved.