---
title: Can I speed up my embedded form's load time? | Paperform Help Center | Paperform
description: The standard Paperform embedding method is built to avoid impacting the overall load speed of the page. If the form is an integral piece of the page content, you can do a few things to increase the speed at which the form loads.
url: "https://paperform.co/help/articles/speed-up-embedded-form"
type: static
generatedAt: "2026-04-04T00:42:01.331Z"
---

Can I speed up my embedded form's load time?
### Embedding

The standard Paperform [embedding](https://paperform.co/help/articles/embedding-guide/) method is built to avoid impacting the overall load speed of the page. To do this, it doesn’t actually start loading the form until the essentials of your page have finished loading.

If the form is an integral piece of the page content, you can do a few things to increase the speed at which the form loads.

### Use a standard script

One of the simplest and most effective changes you can make to speed up the loading of the form is to replace the `<script>` part of your embed with a standard `<script>` element (as opposed to using JavaScript).

Examples of both scripts can be found below, of which the *Original Script* should be replaced by the *New Script Element*:

#### Original Script

```html
<div data-paperform-id="FORM_SLUG"></div>
<script>
  (function() {
    var script = document.createElement('script');
    script.src = "https://paperform.co/__embed.min.js";
    document.body.appendChild(script);
  })()
</script>
```

#### New Script Element

```html
<div data-paperform-id="FORM_SLUG"></div>
<script src="https://paperform.co/__embed.min.js"></script>
```

> In both of these examples, `FORM_SLUG` should be replaced with the value in your normal embed code.

### Place a standard embed script in the page head

You can also try placing a standard embed `<script>` element between the `<head></head>` tags of your webpage. It should be placed as high as possible in the document, preferably just after the initial `<head>` tag for best results.

The script you should place is listed below:

```html
<script src="https://paperform.co/__embed.min.js"></script>
```

#### iFrame Fallback Method

A third and final method to speed up embedded forms is to use our `<iframe>` fallback method. Please note the gotchas and caveats listed in our [documentation](https://paperform.co/help/articles/iframe-embeds/) for this method, we recommend reviewing these first to prevent unexpected changes in form behaviour when embedding.

### Related Articles
  [How do I embed my form?  You can find embed codes in the form editor under Share → Embed.](/help/articles/embed-forms/)
[Can I embed my form in an email?  You can't embed a form into an email as most email service providers won't support iframe content in emails which is required for embedding our forms.](/help/articles/can-i-embed-my-form-in-an-email/)
[How do I use the iFrame fallback method for embedding?  You can use an iFrame element to embed your form when JavaScript is prohibited.](/help/articles/iframe-embeds/)
[Can I embed a form without the background?  In order to embed a form without a background, change the form's background transparency.](/help/articles/can-i-embed-a-form-without-the-background/)