rowebil
Regular Member
- Sep 20, 2010
- 392
- 53
Code:
different=1;
base=1;
function redirect() {
window.location = "http://google.com";
}
function gothere(arg) {
var different = arg;
if (different > base) {
base = different; redirect();
}
setTimeout(function(){gothere(history.length)},100);
Here is the code. However, 100 milliseconds isn't firing the pixel. The redirect link has been getting visitors, therefore I know they are putting in their email..
When I put 1000 milliseconds or greater, it doesn't redirect at all.
Anyone have this issue or was resolved?
With the redirect code, I don't even think it converts at all.. Without the code, it seems to fire pixel, but with it - it doesn't do anything..