status bar question

F

fatboycanteen

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
 
J

Jagan Mohan

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
 
M

Munsifali Rashid

The URL will only be invisible for a few seconds, as the users web browser
is ultimately going to display something like "Connecting to
www.microsoft.com...". The only way you could possibly get around this is
by using Frames - i.e. load the target URL into a big empty frameset, so you
can control the status bar.

Personally, I think it's more trouble than it's worth.

Mun
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,534
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top