Not a straight solution, but you can achieve it by setting like this
<a href="javascript:void[]"
onClick="javascript:GoToUrl('http://wwww.microsoft.com')">Hello</a>
<script>
function GoToUrl(url)
{
window.location.href = url;
}
</script>
Check if this works for you
Regards,
Jagan Mohan
"fatboycanteen" <> wrote in message
news:00c601c3b7cf$0354aca0$...
> I make a hyperlink in my page..
> then,
> How to invisible the url link on the window status bar
> when the user click it.
> ( I tried to use the javascript with mouseover and
> mouseout event, but when I click the link, the url
> still appear)
>
> Thank You
>
>
|