Hey guys,
How can I automatically send the user to the order form on the next page once the user finishes the video on my lp?
Depends - where are you hosting the video? Different hosts have different Javascript behaviours. Here's a discussion of doing it on YouTube: https://productforums.google.com/for...be/UwT-KbqcFzM
In general, you'll need to have some Javascript watching for the video end event.
Yeah, the video will be embedded from Youtube. Is there a way to make it a certain time to automatically go to the next page? That could work also.
if you're using a video that the user can't skip through you could use:
<?php header("Refresh: x; URL=y"); ?>
<meta http-equiv="refresh" content="x; url=y">
where x is the length of the video
For the length, should that be in minutes, seconds, or milliseconds?
would I change x for the content also?
content is how many seconds, so stick <meta http-equiv="refresh" content="300; url=http://salespage.com"> in <head></head> if it was 5 minutes
by the way it's one or the other for the above options
Works perfectly. Thanks man
Yeah, that's a much simpler and more robust approach. Nice one.