i use dropdown multiple select and configuralble list widgets used in my form but it's not working in firefox.

  • lakshmi123
    Asked on September 7, 2015 at 2:04 AM

    In chrome it's working fine.

    I used these two widgets in my form  but it's not show and doesn't working in firefox

    1. Multiple selection widget

    2. Configurable list

  • Boris
    Replied on September 7, 2015 at 6:29 AM

    I can see the problem on your website, and it comes from the fact that the forms are hidden when an option is evaluated from the first Drop Down on your website, before any option is selected:

    i use dropdown multiple select and configuralble list widgets used in my form but its not working in firefox Screenshot 20

    If you change the selected option in this Drop Down, the form will display. If you switch back to the "Transcription" in this Drop Down, the transcription form will display.

    The problem is that, on initial load, the form calculates its height while it is still hidden by the website - it consequently calculates its own height to be zero pixels (0px).

     

    In order to remedy this, we have two available options.

    1. You can embed your Transcription Quote form with an iFrame embed method instead of the script method that it is using now. Please make sure that only the iFrame part of its iframe embed code is used (marked in green), and script part is removed (marked in orange):

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

    2. Alternatively to the above, if you wish to keep the current way of embedding your forms, you will need to add the following CSS code somewhere in the stylesheets of your own website. This code must not be added into the form, but into your actual website instead.

    iframe[id="52442293986465"] {
      min-height: 1068px !important;
    }

    It will make sure that the transcription form has a minimum height of 1068 pixels.

    Please try one of the provided two methods, and let us know how it goes. Thank you.

  • lakshmi123
    Replied on September 16, 2015 at 8:32 AM

    thanks

     

  • Boris
    Replied on September 16, 2015 at 9:36 AM

    You are kindly welcome.

    Please contact us again if you need any other assistance with your forms, and we will be happy to help.