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

Go4Expert Member
11Aug2006,00:13   #1
Rakish's Avatar
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
Team Leader
11Aug2006,10:51   #2
pradeep's Avatar
Try this:

Code: JavaScript
document.onmousemove=function()
  {
     window.status = '';
  }

Put this inside a script tag, inside HEAD of the HTML.
Go4Expert Founder
11Aug2006,14:17   #3
shabbir's Avatar
Try using frames so that the url is same for all the pages shown in the inner frame like gmail
Go4Expert Member
11Aug2006,20:02   #4
Rakish's Avatar
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
Team Leader
11Aug2006,20:23   #5
pradeep's Avatar
You are absolutely correct, Perl is a server-side scripting language. Nothing to do with the client-side processing.