---
title: "Track Form Conversions with Facebook Meta Pixel - Convert Forms"
description: "Since there's no direct integration between Convert Forms and Facebook Meta Pixel, using Javascript is the only way to track form conversions. In deta"
url: "https://www.tassos.gr/docs/convert-forms/integrations/analytics-tracking/facebook-meta-pixel"
date: "2026-04-10T15:55:28+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) / [ Integrations ](https://www.tassos.gr/index.php?option=com_content&view=category&id=59) / [ Analytics &amp; Tracking ](https://www.tassos.gr/index.php?option=com_content&view=category&id=116)

#  Track Form Conversions with Facebook Meta Pixel

Since there's no direct integration between Convert Forms and Facebook Meta Pixel, using Javascript is the only way to track form conversions. In detail, you will need to hook into the *success* event of the form and use the **fbq()** method provided by the Meta Pixel to send the conversion.

## [Requirements](#requirements)

The Pixel's [base code](https://developers.facebook.com/docs/facebook-pixel/implementation#base-code) must already be installed on every page where you want to track conversions.

## [Track Form Conversions with Meta Pixel](#track-form-conversions-with-meta-pixel)

The following example tracks the *Lead* standard event of the form with id #1.

 ```
document.addEventListener('DOMContentLoaded', () => {
    const form = document.querySelector('#cf_1');

    // Listen to the success form event
    form.addEventListener('success', (event) => {

        // Send lead to Facebook Pixel
        fbq('track', 'Lead');
    });
})
```

Open the form builder, go to Design -&gt; Advanced, and place the code into the Custom Code option.

## [References](#references)

[Meta Pixel Standard Events](https://developers.facebook.com/docs/meta-pixel/reference)

[Meta Pixel Convesion Tracking](https://developers.facebook.com/docs/meta-pixel/implementation/conversion-tracking#standard-events)

 Last updated on Jan 8th 2026 11:01

## 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": "Integrations",
            "item": "https://www.tassos.gr/docs/convert-forms/integrations"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Analytics & Tracking",
            "item": "https://www.tassos.gr/docs/convert-forms/integrations/analytics-tracking"
        },
        {
            "@type": "ListItem",
            "position": 6,
            "name": "Track Form Conversions with Facebook Meta Pixel",
            "item": "https://www.tassos.gr/docs/convert-forms/integrations/analytics-tracking/facebook-meta-pixel"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/convert-forms/integrations/analytics-tracking/facebook-meta-pixel"
    },
    "headline": "Track Form Conversions with Facebook Meta Pixel",
    "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/integrations/analytics-tracking/facebook-meta-pixel"
    },
    "datePublished": "2023-02-07T10:07:37+02:00",
    "dateCreated": "2023-02-07T10:07:37+02:00",
    "dateModified": "2026-01-08T11:39:16+02:00"
}
```
