Is there a way to tell IE not to display URL links when a user hovers over a link?
Thanks
Printable View
Is there a way to tell IE not to display URL links when a user hovers over a link?
Thanks
Half support by using JavaScript:
<code>
<a href="http://www.host.com/page.ext" onMouseOver="window.status = ''">Link</a>
</code>
Of course, the user can still right click the URL & copy it like that, and there's also the "View Source" option...
Another way to do it:
Code:<a href="javascript:void(0)" onClick="document.location.href='page1.html'">Click Here</a>
OR
<a href="#" onClick="document.location.href='page1.html'">Click Here</a>