> For the complete documentation index, see [llms.txt](https://help.leadboxer.com/leadboxer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.leadboxer.com/leadboxer/integrations/website/manual-form-tracking.md).

# Manual form tracking

#### Using javascript to securely send captured form data to LeadBoxer

The LeadBoxer javascript library can be used to capture forms that are submitted by your audience.

The method is straightforward:

1. Using javascript you add the data to a map
2. You send the map data when a form is submitted&#x20;

#### **Notes:**

* There is no limit on the number of key / value pairs you submit
* You might need to add a small delay if you redirect to a 'thank-you' page right after a form is submitted

### Code example for basic form

See the Pen [ExjwYoY](https://codepen.io/LeadBoxer/pen/ExjwYoY) by Wart Fransen ([@LeadBoxer](https://codepen.io/LeadBoxer)) on [CodePen](https://codepen.io/).

**Note: don't forget to run this function when the form is submitted, for example by setting onclick="sendTextForm()" on the submit button.**

#### Delay

When the form submit redirects or reloads the page, it is necessary to delay the form submission for one or two second (literally), in order to create a small window during which the form data can be sent to our servers.

Here are a few examples, using jQuery and pure javascript.

You can do this by adding the following to the bottom of the sendTextForm function

```javascript
setTimeout(function() {
  document.myform.submit();  // replace myform with the <form> name 
},2000);


// This is an example using jQuery
$(‘form’).submit(function (e) {
  var form = this;
  e.preventDefault();
  setTimeout(function () {
    form.submit();
  }, 1000); // in milliseconds
});


// You can also specify the class or ID if you have multiple forms on your page
setTimeout(function () {
    $(".profile-form").submit();
}, 5000);

// Or if you want to use the fancier ES6 syntax:
setTimeout(() => $(".profile-form").submit(), 5000);
```

Working example

For a working example on how to submit form fields go [here](http://api.leadboxer.com/api/examples/forms/index.html)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.leadboxer.com/leadboxer/integrations/website/manual-form-tracking.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
