How do I redirect someone after they enter a email submit.

joejim

Registered Member
Joined
Oct 10, 2008
Messages
68
Reaction score
2
I'm a noob and not sure where to put this. How do I redirect someone after they enter a email submit offer? They're going to go back to the original page when there done submitting the info I assume. How can I direct them to a new url once there done with the offer. thx for the help.
 
If they are filling in a CPA lead, there may not be a way you can do it. Unfortunately, the site they are submitting to controls where they go after submitting the form.
 
that sucks I'm not sure if they even get redirected back to my landing page.
 
You can control it if you iframe the offer then include a metafresh after so and so seconds
 
can you give me a sample of what this would look like I'm a noob I've heard of iframe but don't know how to use it. thx
 
You can control it if you iframe the offer then include a metafresh after so and so seconds

Good point. I didn't even think of that. I guess that whatever you put in the page (say a 60 second meta refresh) would over ride anything the network did. Unless their code contained an iframe breaker....
 
I found some code on google but my email submit wont open in the iframe any ideas why the affiliate page won't open in a iframe?
There's a few things in the code I would like to change and was wondering if I could get some help. With this code you have to click start to execute it how do you get it run when the page loads. Also the code loops through the urls I would like it to stop at the last url and break out of the iframe.
Here's the code:
<script>
var arrURL=new Array("http://www.yahoo.com", "http://www.google.com", "http://www.ynet.co.il");
var curIndex=0;
var timer=0;
var refreshRate=10; //seconds
function ChangeFrame()
{
clearTimeout(timer);
var url=arrURL[curIndex];
window.open(url, "Frame1");
curIndex = ((curIndex+1)%arrURL.length);
timer = setTimeout("ChangeFrame()", refreshRate*1000);
}
</script>
<iframe name="Frame1" id="Frame1" src="about:blank" width="500" height="300"></iframe>
<input type="button" onclick="ChangeFrame();" value="Start" />
 
You can control it if you iframe the offer then include a metafresh after so and so seconds

This doesn't always work. MANY offers have javascript frame breakers that are just about impossible to bypass.
 
HTML:
metarefresh

PHP:
Location: redirect

I'm a noob what would the code look like for this?
 
Back
Top