473,382 Members | 1,258 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

status=no compatibility problems

I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)

http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!

So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it. Looks to me like it is dependent on browser
and operating system and just by looking at some googled links on the
subject it is also dependent on your security settings.

I cannot find a definitive answer to this, my client wants the status bar
gone from his progress window and I'd like to be able to explain why it is
beyond my control, if that turns out to be the case.

Anyone familiar with this that can send me a link that explains it all? My
googling hasn't been very successfull.

Thanks!
Jan 30 '06 #1
9 2220
Simon Wigzell said the following on 1/30/2006 11:00 AM:
I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)
Server is irrelevant. It could be Win2003 or it could be
HumptyDumptysWallServer and the server wouldn't matter.
http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!
IE6 XP SP2 has the status bar as well.
So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it. Looks to me like it is dependent on browser
and operating system and just by looking at some googled links on the
subject it is also dependent on your security settings.
It is browser dependent, not OS related at all.
I cannot find a definitive answer to this, my client wants the status bar
gone from his progress window and I'd like to be able to explain why it is
beyond my control, if that turns out to be the case.


Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people and
now you can't remove it.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jan 30 '06 #2
Simon Wigzell wrote:
[...]
I've been experimenting with status=no
You could in fact omit this parameter with the same result as that is the
default value.
This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is
Win 2003)

http://www.mississippiprinting.com/NewTest/test.htm
Probably that is because the browser or popup blocker vendor tried to
prevent JS abuse on the Web (that is, http:// URIs) while retaining
the functionality for the local file system (that is, file:// URIs).

If you have a local Web server and access the document via
<URL:http://localhost/>, is there a status bar?
If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!


Test results should be comparable, so you should test both URIs in both user
agents. Netscape != Firefox, even though both are Gecko-based.
PointedEars
Jan 30 '06 #3
Simon Wigzell wrote :
I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)

http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!

So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it.


Everything has been summed up here:

DOM:window.open()
http://developer.mozilla.org/en/docs..._on_status_bar
"The default preference setting in recent Mozilla-based browser releases
and in Firefox 1.0 is to force the presence of the status bar."

"In MSIE 6 for XP SP2: For windows opened using window.open():
For windows opened using window.open():
'Expect the status bar to be present, and code for it. The status
bar will be on by default and is 20-25 pixels in height. (...)'
quote from Fine-Tune Your Web Site for Windows XP Service Pack 2,
Browser Window Restrictions in XP SP2
"

etc.

Gérard
--
remove blah to email me
Jan 30 '06 #4
Randy Webb wrote :
Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people and
now you can't remove it.


Exactly. And IE7 (starting with beta 2) will force the address bar at
all time. Because of hacks, phishing attacks, etc.. Everything clearly
worded like this:

"We think the address bar is also important for users to see in pop-up
windows. A missing address bar creates a chance for a fraudster to forge
an address of their own. To help thwart that, IE7 will show the address
bar on all internet windows to help users see where they are."
coming from Microsoft Internet Explorer Blog, Better Website Identification
http://blogs.msdn.com/ie/archive/2005/11/21.aspx

Gérard
--
remove blah to email me
Jan 30 '06 #5
Gérard Talbot said the following on 1/30/2006 5:53 PM:
Randy Webb wrote :
Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people
and now you can't remove it.


Exactly. And IE7 (starting with beta 2) will force the address bar at
all time. Because of hacks, phishing attacks, etc.. Everything clearly
worded like this:

"We think the address bar is also important for users to see in pop-up
windows. A missing address bar creates a chance for a fraudster to forge
an address of their own. To help thwart that, IE7 will show the address
bar on all internet windows to help users see where they are."
coming from Microsoft Internet Explorer Blog, Better Website Identification
http://blogs.msdn.com/ie/archive/2005/11/21.aspx


About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)

How does one request that features like that be added in Mozilla though?

I know I can edit the user_prefs file but it would be nice if you didn't
have to.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jan 30 '06 #6
Randy Webb wrote :
Gérard Talbot said the following on 1/30/2006 5:53 PM:
[snipped]

About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)

How does one request that features like that be added in Mozilla though?

I know I can edit the user_prefs file but it would be nice if you didn't
have to.

Open up about:config,
search for
dom.disable_window_open_feature.location
set it to true.
You're done.
There is no user interface besides the about:config.

Gérard
--
remove blah to email me
Jan 31 '06 #7
On 2006-01-30, Randy Webb <Hi************@aol.com> wrote:
About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)
can't you reach that option from about:config ?

dom.disable_window_open_feature.location
How does one request that features like that be added in Mozilla though?
one submits a bug report.... set aside a couple of hours:

The process involves downloading the latest version and confirming that
the bug still exists, and then reading through about 2000 other bug reports.
I know I can edit the user_prefs file but it would be nice if you didn't
have to.


type about:config into the location field.

Bye.
Jasen
Feb 5 '06 #8
Jasen Betts said the following on 2/5/2006 2:50 AM:
On 2006-01-30, Randy Webb <Hi************@aol.com> wrote:
About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)
can't you reach that option from about:config ?


Yes. But it would be nice if it were forced to start with and me having
the option of disallowing it, not the other way around.
dom.disable_window_open_feature.location
How does one request that features like that be added in Mozilla though?


one submits a bug report.... set aside a couple of hours:


Submit a bug report to request a new/changed feature?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 5 '06 #9
On 2006-02-05, Randy Webb <Hi************@aol.com> wrote:
Jasen Betts said the following on 2/5/2006 2:50 AM:
On 2006-01-30, Randy Webb <Hi************@aol.com> wrote:
How does one request that features like that be added in Mozilla though?


one submits a bug report.... set aside a couple of hours:


Submit a bug report to request a new/changed feature?


All bug reports request new or changed features.

:)

Bye.
Jasen
Feb 5 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Pandora Law | last post by:
This probably belongs more correctly in an IE5 newsgroup since it relates to use on a machine that has IE 5.00.3314, but I can't find a suitable group .... and I cant locate an answer on Google...
3
by: I. Tipton | last post by:
Has anyone noticed that status no longer works in IE after updating to SP2? I have several window popups that are supposed to be status bar free but all show the status bar now.
10
by: Nainto | last post by:
Hello, I have posted before about trying to find the status of an FTP uplaod but couldn't get anything to work. After some more searching I found...
3
by: Stevie_mac | last post by:
It might be me but... I dont seem to get a Page_Load event when a opening an ASPX in an iFrame. I do geta Page_Load event when an item on the ASPX (inside the iFrame) is clicked but then...
3
by: tshad | last post by:
My status window is showing in a small XP window I am opening up even though I have "Status=no" function OpenLogoPreviewWindow() {...
1
by: Ronen Yacov | last post by:
Hi There, I've using IE 7.0.5730.11 on Windows XP. I want to open a pop up using javascript without showing the status bar, and to do so I use the function: function openwindow() {...
1
by: Rajesh Ghaywat | last post by:
I hava prob in ShowModalDialogBox. i have clearly mention status=no , while openinf ShowModalDialogBox but it still showing it when i publish my site on server. Its working fine on Localhost. ...
15
by: qfchen | last post by:
I was able to open a connection using TCPClient, it is able to read and write data or string, however when I turn off the remote device or unplug the network cable, then check the client.connected...
6
by: Archana | last post by:
Hi all, i am facing one problem with status bar of IE. when i execute any javascript function or navigate to any link it is showing me that in status bar which i don't want. how will ido...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.