How do i remove the link that appears at the bottom of a browser?

  • Thread starter Thread starter Lex
  • Start date Start date

Lex

Lex

Associate
Joined
26 Dec 2002
Posts
971
Location
NW London, United Kingdom
I want to default the link or be able to change the link at the bottom of the web browser that displays the path to a click that has been selected. How do i do that?

If you're confused basically when you click on a hyperlink it shows the path of that hyperlink in the web browser at the bottom of the screen. How do i get customised text down there? what do i type in the html?
 
That's a nasty thing to do! It used to be common about 5 years ago on websites but not as much now because it's annoying when you can't see where a link goes to. It involves javascript but can't remember what it is as I haven't used it for years.
 
probedb said:
That's a nasty thing to do! It used to be common about 5 years ago on websites but not as much now because it's annoying when you can't see where a link goes to. It involves javascript but can't remember what it is as I haven't used it for years.


I can see why it'd be nasty but my website address is forwarded from another site. I dont really want people knowing where it came from. it displays the original page in the browser below:\ So what do you recommend?
 
it'd be nasty because people might think i'ts going to a bad site that will give them a virus or something. I have seen this many times, espcially in emails, it's like click here to go to paypal, it it takes you somewhere else. i never click on a link if i can't see the destination unless its from a trustworthy site like OcUK so i recommend you don't use it however it's always good to know more about web building so do research it and try it out.
 
addy_010 said:
it'd be nasty because people might think i'ts going to a bad site that will give them a virus or something. I have seen this many times, espcially in emails, it's like click here to go to paypal, it it takes you somewhere else. i never click on a link if i can't see the destination unless its from a trustworthy site like OcUK so i recommend you don't use it however it's always good to know more about web building so do research it and try it out.


It's just annoying if people know the origin of my website. Thanks though i'll research it.
 
It's not always nasty. If you've got an ajax application and want to have the visual pointers for a link to be "Next Page" instead of javascript:req(blahblah); it can be a useful thing to do. Be warned, for it to work properly in firefox, the user actually has to enable the overwriting of the statusbar in their js settings - it's not a default. Think it works ok in IE.

You just need an onmouseover and onmouseout event handler on each link which fires a function which sets window.status. Basically :)
 
growse said:
You just need an onmouseover and onmouseout event handler on each link which fires a function which sets window.status. Basically :)

explain please
 
Back
Top Bottom