My form is not showing the submit button on ipads and iphones. How do I fix this please?

  • HighlandHome
    Asked on November 13, 2017 at 5:30 PM

    The screen shot is from my iphone.  Ipad is the same.  No submit button. 

    Jotform Thread 1297926 Screenshot
  • Kevin Support Team Lead
    Replied on November 13, 2017 at 8:31 PM

    When you embed your form, a JavaScript part is included to calculate the needed height so it changes on different screen-sizes; however, if the form is cutting off on certain devices, you may embed it using the iFrame code and set the scrolling attribute to yes, this way if the iFrame does not have enough size your users will be able to scroll until the bottom. 

    Example: 

    <iframe

           id="JotFormIFrame"

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

           allowtransparency="true"

           src="https://form.jotform.com/23456789"

           frameborder="0"

           style="width:100%;

           height: 8815px;

           border:none;"

           scrolling="yes">     

    </iframe>

    Guide: https://www.jotform.com/help/148-Getting-the-Form-iFrame-Code 

    I hope this helps.