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? 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. 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> Link to comment https://forums.phpfreaks.com/topic/205976-a-href-problem/#findComment-1078820 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.