Click to See Complete Forum and Search --> : Looking for correct script please


Rush
11-30-2002, 09:17 AM
I am trying to locate a script that will completely hide any hint of a web address and/or subdirectory in the status bar. I have several scripts that will hide the address on link mouseover but still show the address in the status bar once the link is clicked on. I need a script that will not display (hide) an address or subdirectory COMPLETELY on mouseover and on click. Any help is greatly appreciated.

Ryan
11-30-2002, 03:58 PM
you should be able to add the onclick attribute with the same function in the link. ie:

<a href="page.ext" onmouseover="blockstat()" onclick="blockstat()">Click here!</a>

remember that if your purpose is to not let people know where your pages are contained, someone can find out, for the most part, no matter how you try to stop them.

smallmuscleshir
12-01-2002, 08:08 PM
if it that important that they not know... use either a modaldialog, modelessdialog, javascript popup, iframe, object,... you can declare to any of these one or both ideas,

1) turn off status bar... window object avail. to javascript, vbscript, etc.

2) set border to 0px, transparent, and oncontextmenu... return false, onmouseover can put blank string to status etc.