Results 1 to 3 of 3

Thread: IE Browser Question.

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2005
    Posts
    14

    Question IE Browser Question.

    Is there a way to tell IE not to display URL links when a user hovers over a link?

    Thanks

  2. #2
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724

    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...

  3. #3
    Frenzied Member andreys's Avatar
    Join Date
    Sep 2002
    Location
    Los Angeles
    Posts
    1,615

    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>
    Visit my PROJECTS @ www.asprojects.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width