Form not working in Cargo

  • fitoutlab
    Asked on February 20, 2016 at 9:54 PM

    I am trying to set up a subscriber form and I have followed all the instructions for embedding in Cargo. I copied the iFrame code and pasted into the content section but it just shows up as a little bit of code on the main screen instead of the form... Any help would be much appreciated!

    here is the code:

     

        <iframe

          id="JotFormIFrame"

          onDISABLEDload="window.parent.scrollTo(0,0)"

          allowtransparency="true"

          src="https://form.jotform.co/60474100478856"

          frameborder="0"

          style="width:100%;

          height:674px;

          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;

            }

            var isJotForm = (e.origin.indexOf("jotform") > -1) ? true : false;

            if(isJotForm && "contentWindow" in iframe && "postMessage" in iframe.contentWindow) {

              var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)};

              iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*");

            }

          };

          if (window.addEventListener) {

            window.addEventListener("message", handleIFrameMessage, false);

          } else if (window.attachEvent) {

            window.attachEvent("onmessage", handleIFrameMessage);

          }

          if(window.location.href && window.location.href.indexOf("?") > -1) {

            var ifr = document.getElementById("JotFormIFrame");

            var get = window.location.href.substr(window.location.href.indexOf("?") + 1);

            if(ifr && get.length > 0) {

              var src = ifr.src;

              src = src.indexOf("?") > -1 ? src + "&" + get : src  + "?" + get;

              ifr.src = src;

            }

          }

          </script>

    Jotform Thread 777181 Screenshot
  • Welvin Support Team Lead
    Replied on February 21, 2016 at 7:05 AM

    I think that is because of the break tags in the form codes. Please copy/paste the following:

     <iframe id="JotFormIFrame" allowtransparency="true" src="https://form.jotform.co/60474100478856" frameborder="0" style="width:100%; height:674px; border:none;" scrolling="no"> </iframe>