Redirect after embedded Youtube video finished playing?

ComaWhite

Newbie
Joined
Apr 17, 2010
Messages
12
Reaction score
0
I want to redirect to an affiliate URL after the embedded Youtube video on my HTML landing page finished playing.

Anyone can tell me how to do this?
 
pretty sure this isn't possible unless the video plays onload.
 
Embed it with autoplay enabled by adding &autoplay=1
Then make a redirect with
Code:
[FONT=Arial, Helvetica][SIZE=2]<meta 			      HTTP-EQUIV="REFRESH" content="0; 			      url= yourdomain com">[/SIZE][/FONT]

Where content is the number of seconds that it waits before the redirect. So make that the same as your the length of your video, or add a second to make sure the video has ended...
 
Embed it with autoplay enabled by adding &autoplay=1
Then make a redirect with
Code:
[FONT=Arial, Helvetica][SIZE=2]<meta                   HTTP-EQUIV="REFRESH" content="0;                   url= yourdomain com">[/SIZE][/FONT]
Where content is the number of seconds that it waits before the redirect. So make that the same as your the length of your video, or add a second to make sure the video has ended...
yeah I was gonna say that exactly but I didn't know if he wanted autoplay enabled.
 
Back
Top