|
I have a script on my site to stop the user seeing what the url for the link is going to, i found a bug in the script and cant seem to find a way around it. Basically when the link is clicked it displays the url while the page loads then goes back to normal ie you can hover over it and it doesnt appear in the space bar. here is the code i have can any one help?
<SCRIPT LANGUAGE="JavaScript">
<!--
function open(){
return false;
}
// -->
</SCRIPT>
<script>
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
__________________
Im crap with code! -But I do try!
|