HELP! I need to blank the referer

pirate.doc

Newbie
Joined
Mar 27, 2009
Messages
44
Reaction score
6
Does anyone know how to reliably blank the referrer.
I do double meta refresh doesn't seem to work.

I wanted to use a script that I am hosting, or that I developed.
If I have to buy a script who has a GOOD script?

should go mypage -(blank referer)-> external page

As I said... I don't mind developing... or buying... either or.

I have been looking but everything looks conflicting ... or does something else.


Thanks,

p.s. I don't even know if this is the right place for this post.
 
Wow! Nothing... well
I found a post about the double meta refresh.
And that works fine... except that it doesn't work on half the browsers out there.

What else to do?
 
i know a website but i can not share links!! google it " blank referer"
 
Take in mind Opera can't be blanked. The others like FF,IE,Chrome.. are blanking fine...
 
Take in mind Opera can't be blanked. The others like FF,IE,Chrome.. are blanking fine...

EDIT: I see you're the creator of Mighty Content Locker - I'm a rookie compared to you in regards to referer blanking.
Statement withdrawn.
 
this is how i blank chrome and safari

<!DOCTYPE html>
<html>
<head>
<script>
function do_redir()
{
window.frames[0].document.body.innerHTML=\'<form target="_parent" method="post" action="URL_HERE"></form>\';
window.frames[0].document.forms[0].submit()
}
</script>
</head>
<body>
<iframe onload="window.setTimeout(do_redir,99);" src="about:blank" style="visibility:hidden"></iframe>
</body>
</html>
 
Thanks soooo much!
Your script is bloody awesome.
It works on chrome+safari+firefox+android browser (which is also webkit)
It worked on IE as well.

I am currently testing on the others.
 
Thanks soooo much!
Your script is bloody awesome.
It works on chrome+safari+firefox+android browser (which is also webkit)
It worked on IE as well.

I am currently testing on the others.

now you owe me a beer, cheers :)
 
If Opera cant be blanked then whats the point?

They will simply use Opera.
 
Back
Top