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...
Also, my links have onClick=”areYouReallySure = true” attached to them.
Much appreciated, It's been driving me nuts.
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>
Much appreciated, It's been driving me nuts.