Hi guyes :)
I need a little help to get this script to work the way I like it to.
I am making a website promote script, to go high in toplists
What my script shall do is to hide a link after it is clicked.
I make one site display all links, that is awaible for to days click, after my promoteor have click one link it need to disapear and only show rest of the links, until the user reach the buttom of the links.
Next day the links shall be awaible again for a click.
How can I do this ?
<html>
<head>
<script type="text/javascript">
function disableLink(url) {
document.write("<style type='text/css'>.disLink {display:none;}</style>");
location.href = url;
}
</script>
</head>
<body>
<a href="javascript:disableLink('http://www.example.com');" class="disLink">test</a>
</body>
</html>