Anyone can give me the answer? TQ.
+1
A:
Convert all anchors from href
to onClick
javascript.
Before implementation:
<a href="mylink.html">MyLink</a>
After implementation:
<a href="#" onClick="javascript:document.location="mylink.html">MyLink</a>
Kangkan
2010-03-03 07:26:40
the hosted links..cannot be edited..
Heypy.com
2010-03-04 11:52:54
A:
this looks pretty suspect, but:
make the href attribute of your links do nothing...
<a href="#">Link Text</a>
and use onclick handlers to change pages.
<a href="#" onclick="javascript: window.location='http://newurl.com'>Link Text</a>
W_P
2010-03-03 07:28:08
but i want to hide all links. all hosted links that cannot be insert the codes.
Heypy.com
2010-03-04 11:32:45
I guess I'm not understanding what you want then. Do you want to hide the links in other users' (that you don't control) Firefox windows, or just on computers you can control?
W_P
2010-03-09 21:17:11
in mozilla, it can not be hide. also i cannot edit like above coz the links are hosted. so can not be changed.
Heypy.com
2010-08-28 14:48:11