HTML Forms: Total Domination
Sobre a Aula

The “autocomplete” attribute plays a crucial role in determining the capability of auto-fill in forms and input fields.

By specifying whether auto-fill is enabled or disabled, it provides control over how browsers handle predicting values based on the user’s previous inputs.

When auto-fill is enabled, the browser suggests filling options as the user types in a field.

These suggestions are based on previous entries in the same field, simplifying the data entry process and saving time for the user.

It is important to note that the “autocomplete” attribute works across various types of fields such as text, search, URL, phone, email, password, date pickers, range, and color.

<form action="/action_page.php" autocomplete="on">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <label for="email">Email:</label>
  <input type="email" id="email" name="email" autocomplete="off"><br><br>
  <input type="submit" value="Submit">
</form>

Your understanding and proper application contribute to a more efficient user experience.

Remember that, in some browsers, it may be necessary to enable the auto-fill function in the settings, usually found in the “Preferences” menu of the browser.

This ensures that the feature works as expected, providing a more intuitive and user-friendly navigation.

Course completion

If you’ve made it this far, congratulations! It means you’ve completed the course: “HTML Forms: Total Domination”.

Undoubtedly, you’ve expanded your knowledge even further in relation to this fantastic language. Surely, your field of vision and your hunger for more knowledge are even more extensive.

So, don’t stop here. Come and also study HTML tables with our course, which is also free: “Build Incredible Tables with HTML in 12 Hours”, and further develop your HTML skills.

Entrar na conversa
Rolar para cima