I was using iframe for my form on my website and it was working great, but suddenly you can't get to the submit button.

  • dani675
    Asked on July 24, 2015 at 1:56 PM
  • David JotForm Support
    Replied on July 24, 2015 at 2:37 PM

    Hi,

    You can adjust the height of the iFrame in the embed code.  Here is your current embed code:

    <div><div id="968379688631817391" align="left" style="width: 100%; overflow-y: hidden;" class="wcustomhtml"><iframe id="JotFormIFrame" onDISABLEDload="window.parent.scrollTo(0,0)" allowtransparency="true" src="//form.jotform.us/form/51868285081160" frameborder="0" style="width:100%; height:14045px; border:none;" scrolling="no"></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 > 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></div>

    Adjust the value of the height attribute until the full form can be seen once again.

    If that does not resolve your issue, let us know and we will be happy to take another look.