HIDE LINK in status bar !

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Baby Blue

    HIDE LINK in status bar !

    I am using a free domain service and phpNuke 7.5 for my site ! Although
    I turn on "cloaking" fearture in my domain service to hide the realink,
    we can see the realink in the status bar of I.E. Can we hide the link
    completely ? Plz help me !

  • Randell D.

    #2
    Re: HIDE LINK in status bar !

    Baby Blue wrote:
    [color=blue]
    > I am using a free domain service and phpNuke 7.5 for my site ! Although
    > I turn on "cloaking" fearture in my domain service to hide the realink,
    > we can see the realink in the status bar of I.E. Can we hide the link
    > completely ? Plz help me !
    >[/color]

    PHP is server based - it won't effect or direct the client web browser
    to do anything... You need a client based scripting language, like
    javascript to help you here... However... I had similar problems, and
    implemented the following solution - however take note that it only
    works on javascript enabled web browsers... Insert the following code
    somewhere between your <HEAD> tags (or I think, you could pretty much
    put it anywhere actually, perhaps just before the close of </BODY>


    <script language="JavaS cript" type="text/javascript">
    function brandOurBar()
    {
    window.status = "this is my status bar text";
    timerID= setTimeout("bra ndOurBar()", 250);
    return true;
    }

    brandOurBar();
    </script>

    I don't know how you'll insert this piece of javascript though into
    phpNuke - I've not used thelatter - though I'm sure there must be a
    method for you to edit their templates.

    randelld

    Comment

    • John Dunlop

      #3
      Re: HIDE LINK in status bar !

      Baby Blue wrote:
      [color=blue]
      > I am using a free domain service and phpNuke 7.5 for my site ! Although
      > I turn on "cloaking" fearture in my domain service to hide the realink,
      > we can see the realink in the status bar of I.E. Can we hide the link
      > completely ? Plz help me ![/color]

      Hopefully you've now realised the short answer is 'No' and
      the long answer is 'No, you shouldn't try to hide it'.

      --
      Jock

      Comment

      Working...