ellescuba27
Member
- Messages
- 273
- Reaction score
- 3
- Points
- 18
This script uses only CSS and HTML to create a link that doesn't show in the status bar. I have seen many people attempt to use the <a> tag and use Javascript to cover it up, but it doesn't work in newer browsers. Here is a script that will use a <span> tag along with some CSS to make it look like a link.
CSS:
HTML:
And putting them together on a page will result in a link that doesn't show it's URL in the status bar! You can even make a hidden link this way! Just remove all the CSS and the class attribute on the <span> tag in the HTML!
The colour of these links will not change if it's visited. I would have to be able to detect which sites you have gone to with Javascript, and while this script is useful, history detection is competitive and mean. So sorry, but I simply won't do that . The best you can do (which I have already done just in case) is make real <a> tags look not visited.
Free to use!
Sources:
Me for the html
http://snipplr.com/view/20014/ for the link disguising
CSS:
Code:
<style type="text/css">
.spanlink {
color: blue;
cursor: pointer;
text-decoration: underline;
}
a:visited {
color: blue;
}
a:active {
color: blue;
}
</style>
HTML:
HTML:
<span onClick="location.href='url.html';" class="spanlink">This is a link! But you won't see any url, no no. That's because I'm not using the <a> tag!</span>
And putting them together on a page will result in a link that doesn't show it's URL in the status bar! You can even make a hidden link this way! Just remove all the CSS and the class attribute on the <span> tag in the HTML!
The colour of these links will not change if it's visited. I would have to be able to detect which sites you have gone to with Javascript, and while this script is useful, history detection is competitive and mean. So sorry, but I simply won't do that . The best you can do (which I have already done just in case) is make real <a> tags look not visited.
Free to use!
Sources:
Me for the html
http://snipplr.com/view/20014/ for the link disguising
Last edited: