|
-
Jul 8th, 2005, 11:09 AM
#1
Thread Starter
New Member
IE Browser Question.
Is there a way to tell IE not to display URL links when a user hovers over a link?
Thanks
-
Jul 8th, 2005, 02:03 PM
#2
Re: IE Browser Question.
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...
-
Jul 8th, 2005, 04:24 PM
#3
Frenzied Member
Re: IE Browser Question.
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>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|