Forms and not displaying properly and some not displaying at all.

  • calistapro
    Asked on November 3, 2014 at 10:08 PM

    I ADDED SOME FORM CREATED ON JOT FORM TO MY WEBSITE AND THEY ARE SHAKY AND NOT DISPLAYING PROPERLY AND SOME OF THE FORMS DOES NOT DISPLAY AT ALL.

  • jedcadorna
    Replied on November 4, 2014 at 5:48 AM

    I would suggest you use an Iframe embed code instead of script method. Once you have placed the iframe code please remove all that is included in <script> </script> section.

    Ex.

    <iframe id="JotFormIFrame" onDISABLEDload="window.parent.scrollTo(0,0)" allowtransparency="true" src="//form.jotformpro.com/form/xxxxxxx" frameborder="0" style="width:100%; height:756px; 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>

    In the example code above just copy the one in blue when you grab your iframe code and do not include the one that has a strike through in it. Also to resize the form please adjust the width and height which is in bold and red.

    The above is just an example please copy your iframe code and make some adjustment to your height to make it fit to your web page.