double meta refresh/chrome?

DMR won't work in Chrome. What you can do is use some javascript to trick the browser into blanking the referer.

Here's an example:

HTML:
<script> 
function go() {
  window.open('javascript:window.location.replace("http://www.whatismyreferrer.com/")');
  return false;  
}
</script> 
<a href='#' onclick='return go();'>Click here to continue</a>
You just need to detect the browser (server or client side) and display your aff links accordingly. I would be thankful if someone can test this out in Safari and Opera.
 
Heya what's the update on this working in Safari/Opera?
 
Actually, it works when u call the code above directly from URL bar.
Not if you load the php content via iframe/header location. Any idea on this?
 
Back
Top