Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to hide status bar

Status
Not open for further replies.

TimBiesiek

Programmer
Nov 3, 2004
151
AU
We are having an issue trying to hide the IE status bar using JS, for a popup window.

It is working on the local machine's IIS, but as soon as it is deployed to the live webserver, it no longer works. Both local machine and server are using the same version of IIS (V6).

We have implemented status:no but this doesn't seem to work.

Any ideas?

Cheers!
 
Any ideas?

Yeah, why don't you first try posting what you've tried so we can tell you why it doesn't work?

-kaht

How much you wanna make a bet I can throw a football over them mountains?
sheepico.jpg
 
Code:
var winsettings = "center:yes;status:0;resizeable:no;scroll:no;help:no;dialogheight:166px;dialogwidth:555px";
var rndDetail = window.showModalDialog("dlg_RoundDetail.aspx, rnddetail, winsettings);

It's the status:0 bit that is meant to turn off the status bar, right?
 
Code:
var rndDetail = window.showModalDialog("dlg_RoundDetail.aspx[red]"[/red], rnddetail, winsettings);

*cLFlaVA
----------------------------
[tt]I already made like infinity of those at scout camp...[/tt]
beware of active imagination: [URL unfurl="true"]http://www.coryarthus.com/[/url]

BillyRayPreachersSonIsTheLeetestHax0rDude
[banghead]
 
Sorry, yeah it does have the close quote already...

I was manually typing that out, as our development environment is within a Terminal Server, andit wasn't letting me copy and paste...
 
You need to define rnddetail to something even null. For instance
[tt]var rnddetail=null;[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top