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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using status=no but still get status bar!

Status
Not open for further replies.

AndyGroom

Programmer
May 23, 2001
972
GB
Hi,

I've got the following code to open a Voting window:

function Vote()
{
newwin = window.open('voteframe.htm','','top=150,left=150,width=600,height=400,status=no,menubar=no,resizable=no,toolbar=no');
}

voteframe.htm is a frame page to display a graphic on the left and a scrollable form on the right.

When the Vote() function is called it opens a new window perfectly, right place and right size, but always with a statusbar at the bottom. What am I doing wrong?


- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments
 
AndyGroom said:
What am I doing wrong?

asking in the wrong forum !

javascript forum216

Chris.

Indifference will be the downfall of mankind, but who cares?
A website that proves the cobblers kids adage.
Nightclub counting systems

So long, and thanks for all the fish.
 
I have heard claims that Windows XP SP 2 has preventative methods to not allow JavaScript to remove the status bar from IE windows.

*cLFlaVA
----------------------------
"Holy crip he's a crapple!
 
I have heard claims that Windows XP SP 2 has preventative methods to not allow JavaScript to remove the status bar from IE windows.

*cLFlaVA
----------------------------
"Holy crip he's a crapple!
 
cLFlaVA is correct. XP SP2 prevents web pages opening windows with no status bar - this is supposed to try and make it more obvious where a link will take you when hovering over it.

Try viewing your web page in an earlier version of Windows/IE to check this is the actual cause of your problem.

--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top