nevermind i found it 
sorry guys! I just checked back on this thread, i never noticed i deleted the entire post!
sorry, sorry!
Anyways, here is the specific code that he was using:
Here is the thread with more information: http://www.blackhatworld.com/blackhat-seo/cloaking-content-generators/14050-masking-status-bar.html
Everything is there, you just put the code BEFORE*** the closing body tag. IMO, this is a fantastic way of completely hiding your links from suspiscious visitors like myself!
*I removed the original site's url where I found this, because I think its bad habit to out other people's pages*
Enjoy it, use it, but don't abuse it or we will all lose it!
sorry guys! I just checked back on this thread, i never noticed i deleted the entire post!
sorry, sorry!
Anyways, here is the specific code that he was using:
Code:
<script language="javascript">
_links = document.getElementsByTagName("a");
for(i=0;i<_links.length;i++) {
if(_links[i].name) {
docloak = function() {
_cloak = this.href;
this.href = this.name;
this.innerHTML = _cloak;
};
_links[i].oncontextmenu = docloak;
_links[i].onclick = function() {
docloak();
if(!/thickbox/.test(this.className)) {
window.location = this.name;
}
return false;
};
_tmp = _links[i].href;
_links[i].href = _links[i].name;
_links[i].name = _tmp;
}
}
</script>
Here is the thread with more information: http://www.blackhatworld.com/blackhat-seo/cloaking-content-generators/14050-masking-status-bar.html
Everything is there, you just put the code BEFORE*** the closing body tag. IMO, this is a fantastic way of completely hiding your links from suspiscious visitors like myself!
*I removed the original site's url where I found this, because I think its bad habit to out other people's pages*
Enjoy it, use it, but don't abuse it or we will all lose it!
Last edited: