How to Cloak a Links Like This

tryer

New Member
I point my mouse on that banner, but no link was shown in the status bar.
How did they do that????? Kindly teach me the code of HTML of that. . .


Thank You in Advance. . . .
 
You ask for a html code, well here u go m8

HTML code:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
<!--
function MM_displayStatusMsg(msgStr) { //v1.0
  window.status=msgStr;
  document.MM_returnValue = true;
}
//-->
</script>
</head>

<body>
<a href="http://www.yoursite.com"><img src="images/image.jpg" width="x" height="x" border="0" onmouseover="MM_displayStatusMsg('add your text here');return document.MM_returnValue" /></a>
</body>
</html>
 
but, if just a link, no Banners?

When i try to point the mouse on that link, then they cant see the direction of it.
 
Only text link

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
<!--
function MM_displayStatusMsg(msgStr) { //v1.0
  window.status=msgStr;
  document.MM_returnValue = true;
}
//-->
</script>
</head>

<body>
<a href="http://www.yourlink.com" onmouseover="MM_displayStatusMsg('your text here');return document.MM_returnValue" onmouseout="MM_displayStatusMsg('Done');return document.MM_returnValue">link</a>
</body>
</html>
 
tryer said:
It doesnt work dude, the affiliate link is still showing. . .

What i mean is

for example i post a link here which is:
vBTEAM Underground - Free vBulletin Hacks, Skins and Support

then when somebody point the mouse on that link, in the status bar will just show like this:
affilated.com

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
<!--
function MM_displayStatusMsg(msgStr) { //v1.0
  window.status=msgStr;
  document.MM_returnValue = true;
}
//-->
</script>
</head>

<body>
<a href="http://affiliate.link.com/123456" target="_blank" onmouseover="MM_displayStatusMsg('your text here');return document.MM_returnValue" onmouseout="MM_displayStatusMsg('Done');return document.MM_returnValue">http://affiliate.link.com/123456</a><br />
</body>
</html>
 
Firefox has a javascript security setting (on by default) that prevents a script from changing the text in the status bar.

But you can use a trick to get a sort of you want:

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
    <script language="javascript" type="text/javascript">
     function redirect(URL)
     {
       document.location=URL;
       return false;
     }
    </script>
</head>

<body>
<a href="Visit-my-Sponsor" onclick="return redirect('http://www.sell.com/?referrer=0');">Click here</a>

</body>
</html>
 
Yes it workx, but the search bar, and the title of the page is still from that page where you click that link
 
You guys seem to know what you're doing so I thought I'd ask an unrelated question here. How do I make a web page that will not close and jumps around all over the place like the meatspin webpage?
 
Sorry for editing ur image tryer

attachment.php
 
Back
Top