|
-
Nov 17th, 2006, 07:41 AM
#1
Thread Starter
Frenzied Member
Hiding the URL-line
I have an application, where I need to hide the URL-address line.
How do I do that?
-
Nov 17th, 2006, 08:55 AM
#2
Re: Hiding the URL-line
window.open has a feature parameter setting location = yes|no will determine if the addressbar appears.
However Mozilla based browsers can be set to force it to always appear and IE7 wont let you hide it at all.
-
Nov 17th, 2006, 09:07 AM
#3
Thread Starter
Frenzied Member
Re: Hiding the URL-line
I have tried this code, but it opens a new window. I have a redirect from my site www.xxx.com to www.yyy.com. I want www.yyy.com to appear without opening a new window and without the URL. Is that possible?
window.open ("http://www.javascript-coder.com",
"mywindow","location=0,status=1,scrollbars=1,
width=100,height=100");
-
Nov 17th, 2006, 09:21 AM
#4
Re: Hiding the URL-line
I'm 99% certain that it's not possible to hide the address bar without opening a new window.
-
Nov 18th, 2006, 03:02 AM
#5
Re: Hiding the URL-line
 Originally Posted by hpl
I have tried this code, but it opens a new window. I have a redirect from my site www.xxx.com to www.yyy.com. I want www.yyy.com to appear without opening a new window and without the URL. Is that possible?
window.open ("http://www.javascript-coder.com",
"mywindow","location=0,status=1,scrollbars=1,
width=100,height=100");
And why would you want to do this? What exactly do you have to hide?
-
Nov 18th, 2006, 04:23 AM
#6
Re: Hiding the URL-line
 Originally Posted by visualAd
And why would you want to do this? What exactly do you have to hide? 
The fact that he's making a phishing site.
-
Nov 18th, 2006, 04:30 AM
#7
Thread Starter
Frenzied Member
Re: Hiding the URL-line
Well, I have a test server, I run for my client. But unfortunately the client's server is not up and running so we redirect the client URL to my testserver, and the client does not want to show my test server URL
-
Nov 18th, 2006, 08:18 AM
#8
Re: Hiding the URL-line
 Originally Posted by hpl
Well, I have a test server, I run for my client. But unfortunately the client's server is not up and running so we redirect the client URL to my testserver, and the client does not want to show my test server URL
You cannot hide the URL. In IE 7 it shows the URL in all popups. In Fx, the user can prevent the site from not displaying the address bar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|