my submit button still disappears after you apply coupon. HELP i need to fix this i don't think it is the height.maybe i need to change visibility

  • wendywhitlow
    Asked on March 22, 2014 at 8:28 PM

    https://secure.jotform.us/form/40597424824157</a>" frameborder="0" style="width: 100%; height: 5380px; border: none;" scrolling="no">bbut i can't find the place to change visibilty

     

    i changed the height to this and to 6000

  • hvwarriornews
    Replied on March 22, 2014 at 10:36 PM

    Is this the entire code you inserted? I copied it into an HTML document, and it does nothing.

     

    Your form page itself does have a visible submit button.

  • Elton Support Team Lead
    Replied on March 23, 2014 at 2:11 AM

    @wendywhitlow

    From where you have embedded the form? Can you please provide the website URL?

    This type of issue can be easily remedied by adjusting the iframe height. From your code sample, try adjusting the iframe height from 5380px to 5400px.

    If this doesn't help, try to removed the script code that is with the iframe code when you copy it on the form builder. In other words, just embed the form using the iframe code only without the script part.

    Example: Do not include the script part as highlighted in red below.

    <iframe id="JotFormIFrame" onDISABLEDload="window.parent.scrollTo(0,0)" allowtransparency="true" src="//form.jotform.co/form/33452936310854" frameborder="0" style="width:100%; height:957px; 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;}};if (window.addEventListener) {window.addEventListener("message", handleIFrameMessage, false);} else if (window.attachEvent) {window.attachEvent("onmessage", handleIFrameMessage);}</script>