How to Auto Pop Up My Form After 10 Secs?

  • webprotechnology
    Asked on February 29, 2016 at 4:39 AM

    here is my form url:

     

  • mert JotForm UI Developer
    Replied on February 29, 2016 at 7:27 AM

    Hi there,

    Unfortunately, there is no ready to use feature for this one, but we can achieve this with a little workaround. You can easily achieve this by using the script from the below:

     

    <script src="//d2g9qbzl5h49rh.cloudfront.net/static/feedback2.js?3.3.8689" type="text/javascript">

    function openFeedBack(){

    var JFL_52302478853458 = new JotformFeedback({

    formId:'60590945307459',

    base:'http://jotform.me/',

    windowTitle:'Newsletter',

    background:'#FFA500',

    fontColor:'#FFFFFF',

    type:1,

    height:480,

    width:300,

    openOnLoad:true

    });

    }

     

    setTimeout(function(){

    openFeedBack();

    },10000);

    </script>

     

    As it is seen, on green marked area you need to enter your form ID and you can set width and height on the blue marked area. Most importantly, you can adjust the popup time (in milliseconds) on orange marked area. However, I did the necessary changes, so you can start to use that one without making any changes.

    Please, try it and let us know the results.

     

    Thanks.