1.

Solve : Hide URL destination in Linked images?

Answer»

Hi,

I have just found this piece of code to allow me to link TEXT and at the same time hide the destination URL:

http://mywebsite.com">Clicking Here[/url]

This piece of code works fine for text, but it doesn't work when hyperlinking images, can anyone tell me why and how to RESOLVE it?

Cheers

______________
[links removed - DO NOT ADVERTISE]
Try:

<a onmouseover="window.status='You are now visiting another page';" onmouseout="window.status='';" href="http://mywebsite.com">Clicking Here[/url]

For images, just change the tag to ....

<img src=".../IMAGE.gif" onmouseover="window.status='This is an image.';" onmouseout="window.status='';" />Only curiosity here - but wonder why you want to hide target URL.

With all the stuff that is around these days - it is often the ability to see a URL in status bar that decides in part at least whether I wanna go there or not!

If I don't see one I for sure ain't goin there! Phishing MAKES much use of spoof text with another URL inside.



Discussion

No Comment Found