Help - Payment Button

2 replies
Hello

I'm creating a sales video and would like my payment button to pop-up at the end? Does anyone know how this is done. Could this be Java Script?

Thank you!
#button #payment
  • Profile picture of the author Daniel44
    The way I would do this is by using a Javascript setTimeout function, which would timeout after your video. The disadvantage to this is you would need to know precisely how long your video is, something like this example should work though:

    <script type="text/javascript">
    function Func1()
    {
    alert("Delayed 3 seconds");
    }

    function Func1Delay()
    {
    setTimeout("Func1()", 3000);
    }

    </script>
    Then you would simply use the onload function in the body tag to call Func1Delay, which would in turn call Func1 after 3000 milliseconds (3 seconds)
    {{ DiscussionBoard.errors[3677729].message }}
    • Profile picture of the author techservice
      Ah, thanks Daniel - Sending good Karma your way!
      {{ DiscussionBoard.errors[3677793].message }}

Trending Topics