Iframe resizing does not seem to work properly causing submit to be cut off and thank you page to be missing

  • adriandinsdale
    Asked on April 7, 2015 at 7:33 AM

    Hello,

    When an entrant enters a coupon code, there is a message that the code has been successfully accepted. The problem I have is that this resizes the form and pushes down the 'Pay and submit' button at the bottom of the form so that part of it disappears.

    Another point: once an entrant successfully completes the whole form and submits it, the 'Thank You' message is not displaying in its entirety.

    Can you please advise?

    Thank you,

    Adrian.

  • mikegultia
    Replied on April 7, 2015 at 9:31 AM

    Hi, adriandinsdale,

    Please allow me to help you.

    If I'm not mistaken, please correct me if I'm wrong, your issue is this:

    http://postimg.org/image/sv9d45o9d/

    In order for you to resolve this issue, one thing that you can do is remove the <script> part of your embedded iframe code. 

    Iframe resizing does not seem to work properly causing submit to be cut off and thank you page to be missing Image 1 Screenshot 40

    or you can also re-embed your iframe code and instead of copying the whole code to your code, you can remove the <script> part first.

    Iframe resizing does not seem to work properly causing submit to be cut off and thank you page to be missing Image 2 Screenshot 51

    Once you're done with any of this, all you need to do next is adjust the height of the style attribute of your <iframe> to your preference and that should solve the issue.

    Iframe resizing does not seem to work properly causing submit to be cut off and thank you page to be missing Image 3 Screenshot 62

     

    For future references, you might also want check this documentation, How to Get the iFrame Code.

    I hope I was able to help you.

     

     

    Best, 

     

    Mike

  • Ben
    Replied on April 7, 2015 at 11:02 AM

    Looking at your website Adrian, I am not able to recreate the issue with the Thank you message. However there is a way to make sure that it is shown every time, and would be by adding the min-height property to the right size, like here:

    <iframe frameborder="0" scrolling="no" style="width: 100%; border: medium none; height: 1450px; min-height: 180px;" src="https://secure.jotformpro.com/form/50485800172956" allowtransparency="true" onDISABLEDload="window.parent.scrollTo(0,0)" id="JotFormIFrame"></iframe>
    <script type="text/javascript">window.handleIFrameMessage = function(e) {var args = e.data.split(":");var iframe = document.getElementById("JotFormIFrame");if (!iframe)return;switch (args[0]) {case "scrollIntoView":iframe.scrollIntoView();break;case "setHeight":iframe.style.height = args[1] + "px";break;case "collapseErrorPage":if (iframe.clientHeight &gt; window.innerHeight) {iframe.style.height = window.innerHeight + "px";}break;case "reloadPage":window.location.reload();break;}};if (window.addEventListener) {window.addEventListener("message", handleIFrameMessage, false);} else if (window.attachEvent) {window.attachEvent("onmessage", handleIFrameMessage);}</script>

    This is what I saw:

    Iframe resizing does not seem to work properly causing submit to be cut off and thank you page to be missing Image 1 Screenshot 20

    As Mike mentioned about the issue with the form being cut, the solution would be to set its height manually and remove the script part. This would be the code in that case:

    <iframe frameborder="0" scrolling="no" style="width: 100%; border: medium none; height: 1450px;" src="https://secure.jotformpro.com/form/50485800172956" allowtransparency="true" onDISABLEDload="window.parent.scrollTo(0,0)" id="JotFormIFrame"></iframe>

    Do let us know if you have any further questions or issues and we would be happy to assist.