---
title: "Browser Autocomplete for Form Fields - Convert Forms"
description: "Each input field in Convert Forms has a Browser Autocomplete setting. You can leave it to the browser, turn off suggestions, or point it to a specific"
url: "https://www.tassos.gr/docs/convert-forms/functionality/browser-autocomplete"
date: "2026-05-26T08:27:36+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Convert Forms ](https://www.tassos.gr/index.php?option=com_content&view=category&id=43) / [ Functionality ](https://www.tassos.gr/index.php?option=com_content&view=category&id=60)

#  Browser Autocomplete for Form Fields

Each input field in Convert Forms has a **Browser Autocomplete** setting. You can leave it to the browser, turn off suggestions, or point it to a specific token like `email` or `given-name`.

Browsers often prioritize user settings over HTML attributes. The `autocomplete` attribute is a hint, not a guarantee. Support varies across browsers (see the [MDN compatibility chart](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#browser_compatibility)).

## [Set Autocomplete for a Specific Field](#set-autocomplete-for-a-specific-field)

Use this when you want different autocomplete behavior on individual fields. Each field can have its own setting, independent of the others.

1. Log in to your Joomla administrator
2. Go to Components -&gt; Convert Forms
3. Edit your form.
4. Click the field you want to configure.
5. In the field settings panel, find **Browser Autocomplete**.

    ![Browser AutoComplete](https://www.tassos.gr/images/2026/05/Browser_AutoComplete.png)
6. Choose one of the following options and save.
    - **Default:** No `autocomplete` attribute is added. The browser decides whether to suggest values based on the field type and the user's own settings.
    - **Off:** Sets `autocomplete="off"` on the input. The browser won't offer suggestions for this field. Good for fields where autofill would be confusing, like a "confirm email" or a dynamically generated reference number.
    - **Custom:** Enter any valid [HTML autocomplete token](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#token_values) to tell the browser exactly what the field expects.

## [Disable Autocomplete for All Fields in a Form](#disable-autocomplete-for-all-fields-in-a-form)

To turn off autocomplete for an entire form, add `autocomplete="off"` to the `<form>` element via a PHP snippet.

1. Log in to your Joomla administrator
2. Go to Components -&gt; Convert Forms
3. Edit your form.
4. Go to Behavior → PHP Scripts → Form Display.
5. Paste this snippet: ```
    $needle = '<form name="cf'.$form['id'].'"';
    $replacement = $needle . ' autocomplete="off"';
    $formLayout = str_replace($needle, $replacement, $formLayout);
    ```

## [Notes](#notes)

- Chrome and Safari often ignore `autocomplete="off"` for login fields and show saved credentials anyway.
- For password and other sensitive fields, `new-password` is more reliably respected than `off`.
- Field-level autocomplete takes priority over any form-level setting.

 Last updated on May 26th 2026 11:05

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Home",
            "item": "https://www.tassos.gr/docs"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Convert Forms",
            "item": "https://www.tassos.gr/docs/convert-forms"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Functionality",
            "item": "https://www.tassos.gr/docs/convert-forms/functionality"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Browser Autocomplete for Form Fields",
            "item": "https://www.tassos.gr/docs/convert-forms/functionality/browser-autocomplete"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/convert-forms/functionality/browser-autocomplete"
    },
    "headline": "Browser Autocomplete for Form Fields",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Tassos Marinos",
        "url": "https://www.tassos.gr/docs/convert-forms/functionality/browser-autocomplete"
    },
    "datePublished": "2026-05-26T11:03:45+03:00",
    "dateCreated": "2026-05-26T11:03:45+03:00",
    "dateModified": "2026-05-26T11:14:52+03:00"
}
```
