Dynamic iframe form height
You can update iframe form height dynamic
Add the following code:
window.addEventListener("message", (event) => { console.log(event.data.scrollHeight) });
scrollHeight
which will return the height of the formYou can then use the height value to update your iframe height attribute
<iframe width="100%" height=scrollHeight title="BEEKAI Form" frameBorder="0" allowFullScreen ></iframe>