Embedded form automatic height adjustment

Hello, I’m running into an issue with the iframe height:

  • If I set a fixed height (e.g., 600px), the form initially displays correctly.
  • However, when the form expands (e.g., longer text input, conditional fields, validation messages), the iframe height does not adjust dynamically.
  • As a result, an internal scrollbar appears inside the iframe, which creates a poor user experience.

On the other hand:

  • If I set the height to 100%, the iframe renders as a very small strip (because the parent container has no explicit height), making it unusable.

What I’m trying to achieve:
I would like the iframe to automatically resize based on its content height, so that:

  • the iframe grows/shrinks dynamically,
  • no internal scrollbar appears,
  • and the page itself scrolls naturally instead.

Question:
It will be great if Tape will support automatic iframe resizing (e.g., via postMessage or a built-in embed script). :slight_smile:

Thanks, Vladimír.