Stop additional info form being displayed in address bar and status bar.

Discussion in 'Perl' started by Rakish, Aug 10, 2006.

  1. Rakish

    Rakish New Member

    Joined:
    Jun 30, 2006
    Messages:
    25
    Likes Received:
    0
    Trophy Points:
    0
    How can i restrict the address bar and the status bar from displaying the path, file name, query strings,

    As in Gmail, the address bar displays

    http://www.gmail.com/gmail

    and nothing else. Also, the status bar doesnt display anything at all.

    please help.

    Rakesh Gupta
     
  2. pradeep

    pradeep Team Leader

    Joined:
    Apr 4, 2005
    Messages:
    1,645
    Likes Received:
    87
    Trophy Points:
    0
    Occupation:
    Programmer
    Location:
    Kolkata, India
    Home Page:
    http://blog.pradeep.net.in
    Try this:

    Code:
    document.onmousemove=function()
      {
         window.status = '';
      }
    Put this inside a script tag, inside HEAD of the HTML.
     
  3. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    Try using frames so that the url is same for all the pages shown in the inner frame like gmail
     
  4. Rakish

    Rakish New Member

    Joined:
    Jun 30, 2006
    Messages:
    25
    Likes Received:
    0
    Trophy Points:
    0
    Thanks for your speedy posts,

    If i am correct, there is no way to do this using Perl Script, as Perl is a server side script.

    Please correct me if i am wrong.

    Thanks

    Rakesh Gupta
     
  5. pradeep

    pradeep Team Leader

    Joined:
    Apr 4, 2005
    Messages:
    1,645
    Likes Received:
    87
    Trophy Points:
    0
    Occupation:
    Programmer
    Location:
    Kolkata, India
    Home Page:
    http://blog.pradeep.net.in
    You are absolutely correct, Perl is a server-side scripting language. Nothing to do with the client-side processing.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice