Exit Pop interferring with P202?

Status
Not open for further replies.

ErioE

New member
Feb 27, 2009
38
0
0
I'm having an issue with Prosper202 that has me stumped.

I recently put an exit pop on my landing page (a really basic one I found either here or on one of the big blogs). I have Prosper202 set up properly and everything tracks fine without this exit pop. (subid gets passed on) For example,

Google -> LP (with P202 javascript) -> P202 redirect -> offer

However, when I put the exit pop on my page, the subid isn't getting passed to the network. Going from Google -> LP seems to work fine, I can see in Prosper that someone hit my LP and I can see the keyword like normal, however, when they click the outbound link and get redirected to the offer, Prosper stops tracking. In the spy view, it does not show that they went to the offer. Yet, I can check on the network side and see that I have clicks and conversions coming in, I'm just losing the Subid info.

Somehow the javascript exit pop is interferring with Prosper202 and I just can't figure out why. I'd really appreciate help from one of the code gurus here.

Here is the code for the exitpop in case it helps anybody...

Code:
<script type=”text/javascript” language=”javascript”>
var areYouReallySure = false;
var internalLink = false;
function areYouSure() {
if (!areYouReallySure && !internalLink) {
areYouReallySure = true;
location.href=”http://SHAMWOWMUTHAFUCKA.com”
return “WAIT! Maybe you’d like to try ShamWow instead?\r\nOrder now and we’ll have Chuck Norris personally deliver it!”;
}
}
window.onbeforeunload = areYouSure;
</script>
Also, my links have onClick=”areYouReallySure = true” attached to them.

Much appreciated, It's been driving me nuts.
 


Your posts are < 40 min apart, there aren't that many programmers on here, and hell I'm drunk so not like I'm looking over it right now. Chill.
 
Have you posted in the p202 forum?
Your more likely to get an answer there.
 
no response in the p202 forum.

Thanks shady, I hadn't thought of that. Worth a try though.
 
your js is fucked.
Code:
location.href=”[URL="http://shamwowmuthafucka.com%e2%80%9d/"]http://SHAMWOWMUTHAFUCKA.com”[/URL]
this will redirect the browser
Code:
return “WAIT! Maybe you’d like to try ShamWow instead?\r\nOrder now and we’ll have Chuck Norris personally deliver it!”;
this shouldn't even get called as the url redirect should exit the function before this get run... and it would need to be loaded into an alert/document.write object for it to display.

anyways if you are doing a js redirect then the referrer etc is from the domain making the redirect not google.
 
Status
Not open for further replies.