IE9 lower left url on mouseover, how to stop

Page 4 of 4 FirstFirst ... 234

  1. Posts : 20
    win7 64bit
    Thread Starter
       #31

    logicearth said:
    Cannot stop it. Unless you want to hack into the resource files and hope there is a means.
    What are "resource files" and where are the located?

    Could not find a fix in the registry. Willing to look elsewhere.
      My Computer


  2. Posts : 707
    Windows 7 Ultimate 64 bit
       #32

    Why not use another browser that offers more choice over the user interface ?
    logicearth

    You won't find a way to turn it off.
    Every browser does it, and will continue to do it.
    Every browser does not do it, Opera does not if you turn of the Status bar there are no popups , there is an extension you can use if you do want them.
      My Computer


  3. Posts : 5,642
    Windows 10 Pro (x64)
       #33

    usernamed said:
    What are "resource files" and where are the located?
    Those DLL files Internet Explorer uses, or inside the executable file it self. A mass of binary data, unless you know what you are looking for and how to change it. Good luck with that.
      My Computer


  4. Posts : 1
    win 7 professional
       #34

    I was searching hard the web for a solution to avoid this nerving url-popups, now I found a way myself with a simple Javascript-function:

    function nourl()
    {
    var coll = document.all.tags("A");
    if (coll!=null)
    {
    for (i=0; i<coll.length; i++)
    {
    a=coll[i]
    x=a.href;
    a.name=x;
    chg='<A onMouseOver="this.name=this.href; this.href=\'\'; this.hostname=\'\'; this.protocol=\'schmecks\';" onMouseOut="this.href=this.name" onClick="this.href=this.name" '
    tx=a.outerHTML;
    tx=tx.replace("<A ",chg);
    a.outerHTML=tx;
    }
    }
    }

    This function moves the href to name and empties href on mouseover, so there is nothing to show for the browser
    onclick the values are restored and the link is working well.
    Calling the function with <body onload="nourl()> all the urls on the page do not popup anymore.
      My Computer


  5. Posts : 1
    Windows 7 Ultimate 64-bit
       #35

    adip said:
    I was searching hard the web for a solution to avoid this nerving url-popups, now I found a way myself with a simple Javascript-function:

    function nourl()

    This function moves the href to name and empties href on mouseover, so there is nothing to show for the browser
    onclick the values are restored and the link is working well.
    Calling the function with <body onload="nourl()> all the urls on the page do not popup anymore.
    Adip,

    I eagerly put this in. It works pretty good in IE8, but my IE9 still shows all URLs (from my anchor tag hrefs) in the IE9 status bar. Does it on yours? What's going on?
      My Computer


 
Page 4 of 4 FirstFirst ... 234

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 17:02.
Find Us