vote up 0 vote down star

When I run the JavaScript code below in Mozilla Firefox, the menu bar does not show:

                window.open(location.pathname + "?print=print",
                    "print-window",
                    "toolbar=yes,location=no,scrollbars=yes,menubar=yes");

What is going wrong here?

Note that I'm opening the same file (in another window), I'm just adding a parameter value to it. I don't know whether this matters.

Strangely enough, if I call:

                    window.print();

on the new window, the menu bar does show.

flag

69% accept rate
What version of Firefox, and what OS? Works for me on Firefox 3.03 / Windows XP. – Patrick McElhaney Jul 2 at 19:48

1 Answer

vote up 0 vote down

Have you tried menubar=1 ... or possibly menubar=true?

link|flag
menubar=1 does not work. – Paul Reiners Jul 2 at 19:46
menubar=true also does not work. – Paul Reiners Jul 2 at 19:49
Sorry. I take that back. menubar=1 does work. Thanks! Now I need to check whether it works with other browsers. – Paul Reiners Jul 2 at 19:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.