robert_gsfame Posted June 27, 2010 Share Posted June 27, 2010 Let say i have <a href=bla.html>Click here</a> When user put their cursor on "click here", at the bottom of firefox browser will appear link information which is bla.html...how can i hide or rename it? Quote Link to comment https://forums.phpfreaks.com/topic/205976-a-href-problem/ Share on other sites More sharing options...
haku Posted June 27, 2010 Share Posted June 27, 2010 You can't. Quote Link to comment https://forums.phpfreaks.com/topic/205976-a-href-problem/#findComment-1077808 Share on other sites More sharing options...
err.x Posted June 29, 2010 Share Posted June 29, 2010 it's not possible,because the browser developers think it's a security issue[i think it is,imagine I put a link for a bad thing and you see a good thing in status bar......]. but maybe it works. you can put a hyperlink with href="whatever you want" and on-click change the location : <script language="javascript" type="text/javascript"> function GoTo(URL) { document.location=URL; return false; } </script> <a href="Goooood Thing" onclick="GoTo('http://www.Baaad-thing.com');">Heha</a> Quote Link to comment https://forums.phpfreaks.com/topic/205976-a-href-problem/#findComment-1078820 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.