Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 4th, 2007, 05:46 PM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default remove the status bar from popup window

I've have implemented a piece of JavaScript that will resize the window size dependant on the size of the image - http://www.ayrshireminis.com/mini/en/galleries.php (click an image).

Although, when i'm calling the window.open method with menubar=0 and status=0 why does the status bar still show in FF 2.0.0.11 and both show in IE7 but neither shows in OP 9.24 ?

Da,
Picco

_______________________
Ayrshire Minis - a Mini E-Community
www.ayrshireminis.com
www.crmpicco.co.uk
www.scottishminis.com
__________________
_______________________
Ayrshire Minis - a Mini E-Community
http://www.ayrshireminis.com
http://www.crmpicco.co.uk
 
Old December 4th, 2007, 06:15 PM
Friend of Wrox
 
Join Date: Jan 2004
Posts: 1,870
Thanks: 12
Thanked 20 Times in 20 Posts
Send a message via AIM to mat41
Default

FYI its shows in IE 6.0 (sp 2) also. status=0 is what works for me, interesting....

I notice you an I use single and double quotes differently....

Anyhow this is the code which works for me:

function call:
onClick="openBareWin('6x9Pop.asp','pop',715,440,20 0,200);"

function:
    var newBareWin
    function openBareWin(pageURL, pageName, width, height, top, left)
    {
          newBareWin = window.open(pageURL, pageName,"width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=0, resizable=0,toolbar=0,location=0,status=0,menubar= 0");
          newBareWin.focus()
    }



Wind is your friend
Matt





Similar Threads
Thread Thread Starter Forum Replies Last Post
Window.status Bar [email protected] C# 2005 6 January 9th, 2008 05:18 AM
Status Bar ironchef Java GUI 0 October 26th, 2006 09:19 PM
how to display message to window.status bar tllcll BOOK: Professional JavaScript for Web Developers ISBN: 978-0-7645-7908-0 0 November 22nd, 2005 02:04 AM
hide the status bar of window at runtime yeetesh Pro VB 6 5 January 10th, 2005 02:38 PM
Status Bar soccers_guy10 Pro VB.NET 2002/2003 3 August 12th, 2003 11:48 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.