Click to See Complete Forum and Search --> : How do i hide address bar in IE and Nestscape - programatically


mgonzal
06-18-2003, 03:22 PM
How do i hide address bar in IE and Nestscape :confused:

Because, i need to display a WEB FORM (Oracle) without
user and password (in address bar)

Thank's :(

:confused:

loic
06-18-2003, 04:06 PM
hi,

Check this Jscript :

NETSCAPE_ONLY_SOLUTION
<html>
<head>
<title> New Window </title>
<script language="javascript">
function hideurl()
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");
window.locationbar.visible=false;
netscape.security.PrivilegeManager.disablePrivilege("UniversalBrowserWrite");

}
</script>
</head>
<body>
<input type="button" value="hideurl" onclick="hideurl()"/>
</body>
</html>

It should work. Gonna try to find something for IE.

mgonzal
06-19-2003, 07:08 AM
:D
I'm going try... :)
Please let me know if you find something for IE.

Thanks for all!! ;)

PD. Did you know some web sites-- to find related information?