How to hide the link below the browser? I don't know where to post, but I think javascript is used to hide the links below the browser... for example I point my mouse in the USER CP.. a link below will appear that USER CPs URL is http://forums.digitalpoint.com/usercp.php I just want to reply it with the word User CP.. is it possible? then the link is hidden? Just like what the SoThink DHTML Menu does...?
Do you mean hide the link that appears in the status bar? if you do then this might help: http://www.javascriptkit.com/script/script2/hidestatus.shtml
yep... just replace it with a custom text... for example i have a link at http://google.com, the one the will appear in the status bar is just Google That's all Thanks for the reply sky22, but the script that you have posted only hides, but doesn't replace the URL in the status bar
Microsoft IE7 took out javascript window.status changes in order to prevent phishing/address spoofing. You need to change your browser options to change the status bar via Javascript on IE7.
The way around: <a href="http://www.google.com" onclick="window.location='http://www.yahoo.com'; return false;">Google</a> HTML:
whoawW! Thanks for that info .. i don't know that ^_^ But it still works with SoThink DHTML Menu.. if you create a menu there, you will have an option to replace the link in the status bar with a short name.. for example my home page in the status bar is http://mywebsite.com/index.php, it will be replaced by My Home Page in the status bar... I think it is still possible in IE7, I just don't know how
As you can see, as I point my mouse in the homepage, the status bar will just show the word Home Page, not the long URL. A Screenshot Sample: http://dostscholars.com/images/IE7poito.jpg But I made this with DHTML menu, what I want is a javascript to do the samething without the SoThink DHTML menu.. how can I do that javascript gurus?