Drift FastLane for Pardot Form-Handlers


The below form (created in WordPress) connects to Pardot. It utilizes Pardot’s Form-Handler process and Drift’s FastLane Deferred Form Submission process.

We’ve identified our form with the id pardot-form. In this particular situation, we are allowing Pardot to handle the redirects to the “Thank You” page. Hence, we’ve updated our form to include the ‘submit’ code provided by Pardot.






For Drift, we’ve used the drift.api.connectForm to stage the form data.

drift.api.connectForm({
    formSelector: 'pardot-form', // update me with your form element's id!
    stageData: true
  });

Hit submit, and we’ll see you on the Thank You page.