New windows open with different toolbars (and missing URL bar)

When I select the "New Window" button or "Open in New Window" from the context menu, a new Firefox window opens - however, the toolbars are completely different from the original open window. Specifically, the URL location bar is missing.
I can add it back, but the change then modifies my original toolbar setup.
More bad behavior: Even if I modify the new window back to the way I wanted it, new windows opened from that window revert back to the modified version, with no location toolbar.

You can try:
* http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features
* http://kb.mozillazine.org/JavaScript#Advanced_JavaScript_settings
Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
* Don't make any changes on the Safe mode start window.
* https://support.mozilla.com/kb/Safe+Mode
* https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Similar Messages

  • When I open a link a new window opens with the toolbar and sidebar missing, on my previous machine the link simply opened in a new tab (not window).

    When I open a link in Firefox instead of opening a new tab it opens in a new window with all of the toolbars missing including the sidebar, right clicking anywhere gives me no options to restore the toolbars. My old machine simply opened the same link that I am trying in a new tab with all my toolbars available.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Firefox will not open new windows, opens with session restore every time I use it, and won't let me open the throubleshooting tab... Why?

    Whenever I try to open a new window, nothing happens. This includes clicking ctrl+N and through the drop down menu.
    Also, whenever I start firefox to browse the internet, it always open with a Session Restore with the previous session listed, even though I closed all the tabs and shut it down normally without any prompts telling me about saving multiple tabs.
    Finally, when I tried to troubleshoot this problem, the tab never appeared. The only options that work on the Help Menu are:
    - Firefox Help (after a few clicks)
    - Report Broken Web Site
    - Check for Updates
    - About Firefox

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    There are other things that need your attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r45
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/

  • When I click on a link, a new window opens but is blank and says "stopped" at the bottom

    Happens on any website.eg-if I am looking for a quote on moneysupermarket.com and I lick on the required link, a new window will open but it will be blank and in the bottom left hand corner the word stopped appears

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    There are other things that need attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r32
    # Java Plug-in 1.6.0_06 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • New Window Opens Under The Toolbar

    When I open a new window, the left side always falls under the toolbar, hiding the red button that closes the window. I think this is something new. I don't remember having to move each window after it opens in the past. Anybody else? Any solutions? Thanks.

    Nevermind. I trashed the preferences and that fixed it.

  • Problem with new window opening with basic test JTree program

    I'm still getting to grips with Swing, and have now moved on to basic JTrees.
    I'm currently trying to use an add and delete button to add new nodes to the root etc. The addition and deletion is working ok, except that each time the addButton is pressed, a completely new window is created on top of the current window with the new node added to the root etc.
    I know this is probably a simple mistake, but I can't quite see it at the moment.
    My current code is as follows,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    public class TreeAdditionDeletionTester_1 extends JFrame implements ActionListener
        private JTree tree;
        private DefaultTreeModel treeModel;
        private DefaultMutableTreeNode rootNode;
        private JButton addButton;
        private JButton deleteButton;
        private JPanel panel;
        private int newNodeSuffix = 1;
        private static String Add_Command = "Add Node";
        private static String Delete_Command = "Remove Node";
        //DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Root");
        //TreeAdditionDeletionTester_1 treeChange;
        public TreeAdditionDeletionTester_1() 
            setTitle("Tree with Add and Remove Buttons");
            //DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Root");
            rootNode = new DefaultMutableTreeNode("Root");
            treeModel = new DefaultTreeModel(rootNode);
            tree = new JTree(treeModel);
            tree.setEditable(false);
            tree.setSelectionRow(0);
            JScrollPane scrollPane = new JScrollPane(tree);
            getContentPane().add(scrollPane, BorderLayout.CENTER);
            JPanel panel = new JPanel();
            addButton = new JButton("Add Node");
            addButton.setActionCommand(Add_Command);
            addButton.addActionListener(this);
            panel.add(addButton);
            getContentPane().add(panel, BorderLayout.SOUTH);
            deleteButton = new JButton("Delete Node");
            deleteButton.setActionCommand(Delete_Command);
            deleteButton.addActionListener(this);
            panel.add(deleteButton);
            getContentPane().add(panel, BorderLayout.SOUTH);    
            setSize(300, 400);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setVisible(true);
        public void actionPerformed(ActionEvent event) 
           TreeAdditionDeletionTester_1 treeChange = new TreeAdditionDeletionTester_1();
            String command = event.getActionCommand();
            if (Add_Command.equals(command)) {
                //Add button clicked
                treeChange.addObject("New Node " + newNodeSuffix++);
            } if (Delete_Command.equals(command)) {
                //Remove button clicked
                treeChange.removeCurrentNode();
        public void removeSelectedNode()
            //get the selected node
            DefaultMutableTreeNode selNode = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
            //method from Class JTree
            if (selNode != null)
                //get the parent of the selected node
                MutableTreeNode parent = (MutableTreeNode)(selNode.getParent());
                //getParent() from Interface TreeNode
                // if the parent is not null
                if (parent != null)
                    //remove the node from the parent
                    treeModel.removeNodeFromParent(selNode);//method from Class DefaultTreeModel
                    return;
        public DefaultMutableTreeNode addObject(Object child) {
            DefaultMutableTreeNode parentNode = null;
            TreePath parentPath = tree.getSelectionPath();
            if (parentPath == null) {
                parentNode = rootNode;
            } else {
                parentNode = (DefaultMutableTreeNode)
                             (parentPath.getLastPathComponent());
            return addObject(parentNode, child, true);
        public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent,
                                                Object child,
                                                boolean shouldBeVisible) {
            DefaultMutableTreeNode childNode =
                    new DefaultMutableTreeNode(child);
            if (parent == null) {
                parent = rootNode;
            treeModel.insertNodeInto(childNode, parent,
                                     parent.getChildCount());
            //Make sure the user can see the new node.
            if (shouldBeVisible) {
                tree.scrollPathToVisible(new TreePath(childNode.getPath()));
            return childNode;
        public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent,
                                                Object child) {
            return addObject(parent, child, false);
        public void removeCurrentNode() {
            TreePath currentSelection = tree.getSelectionPath();
            if (currentSelection != null) {
                DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)
                             (currentSelection.getLastPathComponent());
                MutableTreeNode parent = (MutableTreeNode)(currentNode.getParent());
                if (parent != null) {
                    treeModel.removeNodeFromParent(currentNode);
                    return;
         * Main method to run as an Application
        public static void main(String[] arg) 
            TreeAdditionDeletionTester_1 addDeleteTree = new TreeAdditionDeletionTester_1();
    }      Thanks.

    I'm currently trying to use an add and delete button
    to add new nodes to the root etc. The addition and
    deletion is working ok, except that each time the
    addButton is pressed, a completely new window is
    created on top of the current window with the new
    node added to the root etc.
    I know this is probably a simple mistake, but I can't
    quite see it at the moment.
    Look at the actionPerformed code for your buttons. The first thing you do there is to create a new TreeAdditionDeletionTester_1, so I don't know why you are surprised you get a new window. There is no need to create a new instance in there, just call addObject/removeCurrentNode on the "this" instance.

  • Handling new window open with WebView

    Hi,
    I'm developing an app where I use webview to display a webpage. The webpage has a link where a file gets downloaded automatically when selected. What I'm trying to do is to get the link of the downloadable file and try to download it from my app. The problem
    I'm facing is that IE automatically opens whenever the downloadable link is pressed. I cant get event handler to detect this scenario. I've seen there could be a solution using Javascript but I dont know how to implement it. I found there is x-ms-webview.MSWebViewNewWindowRequested
    but this one is for Windows 10 only. I wonder if there is an alternative solution for WP8.1. Thanks

    Hi Rob,
    Now I've tried two solutions and none of them worked as expected. Here are the options
    1) In the WebView.NavigationStarted, I download the html content and then modify it to remove target=_blank which triggers opening a new window. I then call  WebView.NavigateToString to call the new html content. Looks like it works somehow but
    the reloaded page does not contain images, links, etc. Is there a way to fix this?
    2) I've tried the solution described in this link:
    http://stackoverflow.com/questions/18799534/notify-click-action-on-button-in-webview
    which is essentially injecting javascript code to handle button clicks.  The code looks like this:
    private void WebView_OnLoadCompleted(object sender, NavigationEventArgs e)
    webView.InvokeScript("eval", new[]
    "var loginButon=document.getElementById(\"login\");" +
    "if (loginButon.addEventListener) {" +
    "loginButon.addEventListener(\"click\", clickFunction, false);" +
    "} else {" +
    "loginButon.attachEvent('onclick', clickFunction);" +
    "} " +
    "function clickFunction(){" +
    " window.external.notify('loginClick');"+
    However, I get error when the code executes webView.InvokeScript (Execption:0x80020101). Do you have any idea why?
    Kind Regards

  • I downloaded fbdownloader and now having a oproblem with random window opening with other websites and a link on firefox I can't get rid of

    I downloaded fbdownloader and after doing so I noticed changes in my facebook and I am getting random webpages popping up on new windows. there is a link on my facebook that I can't get rid of and I have uninstalled this program but seems there is lingering things that I can't get rid of. What can I do?

    You have probably downloaded malware. Do a Microsoft Security Scan at http://www.microsoft.com/security/scanner to check for viruses and tell me the result

  • All of a sudden when i click any button or link a new window opens with an ad

    I have used Firefox for about 7 years. No issues...
    I recently installed Ghostery add on.
    The only way to describe it is:
    I go to a page..
    Click a link (or close to it) or enter or any other button/link that would take me to what I expect..
    BUT instead it opens a new tab to an advertisement site (quibids, P&G, many other random ads) - a few of them I blacklisted with BLOCKSITE (installed after the problem started happening) but several I can't because I would actually use them when I need to (ex: Vistaprint.com)
    When I go back to the original site and click the same link and click it again it works as intended.
    This happens across all sites that I am on...
    It is like there is a hidden link within the one I am clicking on.
    I have pop ups blocked in my browser but this gets around it somehow.
    Since GHOSTERY installed, some sites do not work correctly. If I click on a picture, or something that I want to expand it is as if I am doing nothing at all because it won't complete the action, the functionality is broken.
    I have white listed a couple sites but this is random and if I whitelist everything I come across then it opens me back to what I am trying to avoid..
    EXAMPLES:
    went on Heat.com, clicked the button to go to the White Hot Gear instead it opened a new tab brandonline.com
    was on LinkedIn and hit the comment button on a thread, then it opened a new tab vistaprint.com
    was on publix.com, hit the order refills button, then it opened a new tab premium-promos.net
    did a google search clicked on the link I wanted, it opened a new tab premiumgiftrewards.net
    EACH time I go back to the original site and click the same button/link/etc it takes me where expected.
    Thanks in advance for your help!

    Both Firefox and IE have the same problem. The cursor instead of being a finger when pointing to a link is still an arrow. However I can click anywhere on the page and an ad will pop up. I have eliminated all unwanted bars in Firefox, I ran Malwarebytes until it came out clean. I also have AVG which had detected a few items on it's own. But when I get into Firefox I still have exactly the same problem. Now it will not let me download Browser Safeguard. Usually after one click the pointer returns to normal for a few screens. When I try to click to download Browser Safeguard it keeps bringing up different ads or it tries to get me to upgrade Firefox or some other browser helper program which I know are all BS tactics to get me to load their junk again. PLease help I'm an engineer and pretty good with PCs but this one has me beat at least so far.

  • Everytime I sign in or out of Ebay a new window opens with an advert.

    I've used No-script to block as untrusted but the window still opens. Is this a Firefox or Ebay problem and how do I stop it?

    Both Firefox and IE have the same problem. The cursor instead of being a finger when pointing to a link is still an arrow. However I can click anywhere on the page and an ad will pop up. I have eliminated all unwanted bars in Firefox, I ran Malwarebytes until it came out clean. I also have AVG which had detected a few items on it's own. But when I get into Firefox I still have exactly the same problem. Now it will not let me download Browser Safeguard. Usually after one click the pointer returns to normal for a few screens. When I try to click to download Browser Safeguard it keeps bringing up different ads or it tries to get me to upgrade Firefox or some other browser helper program which I know are all BS tactics to get me to load their junk again. PLease help I'm an engineer and pretty good with PCs but this one has me beat at least so far.

  • Cant install software from disk. Terminal window opens with a logon and bash message?

    I cannot install software from disk & in some cases download.
    If any software disk is inserted the terminal window appears.
    The Disk has to be clicked to open the contents but install files or package files show as a blank doc and not the usual yellow package icon.
    All that shows is a log on message in the terminal window, but nothing about install.
    I thought Drive issues but the drive plays audio and DVD perfect
    I cannot install:-
    Office for mac updates
    Live Interior 3D (managed to install from download)
    ION Audio Converter
    This has only come to my attention in the last couple of weeks.
    The machine is a late 2011 with Lion installed

    Contact Apple Service, iMac Service or Apple's Express Lane. Do note that if you have AppleCare's protection plan and you're within 50 miles (80 KM) of an Apple repair station, you're eligible for onsite repair since yours is a desktop machine.

  • I like to keep 2 sessions open, but today a new session opens with blank page and no bookmarks - why?

    I keep a session open pretty much all day but minimize it when I leave so someone else can use a session for whatever they want. Today when I open a new session (while mine is minimized) the page is blank and there are no bookmarks. I can hit the home icon and go to view and see my bookmarks but this is a pain

    Hey mate,
    I was having the same problem. If you upgraded to Lion - apparently there is a 'general tab' in the system preferences that has a box that you need to un check. (The box says something about restoring all last windows from last session)
    If you updated Safari but are not using Lion, here is how to fix it. Simply delete this item fromyour Mac HD and restart Safari.
    [USERHOME]/library/preferences/com.apple.safari.plist
    Hope this helps... It worked for me!

  • While using Firefox, I keep getting a new window opening with the comment, Firefox can't find the file at /C:/Program Files/Mozilla Firefox/:þê+ìñLáR¸=%1AÞÀšlÀ£µSëä85r%1EI:U%0EÐL Vbj¨×mb¾Lvø5%13›H., how can I get rid of this file?

    I can delete this window, but it keeps recurring, sometimes within 5 - 10 seconds.

    The ONLY support for Mozilla programs are web sites like this.
    The people who answer questions here, for the most part, are other Firefox users volunteering their time (like me), not Mozilla employees or Firefox developers.
    If you want to leave feedback for Firefox developers, you can go to the Firefox ''Help'' menu and select ''Submit Feedback...'' or use [https://input.mozilla.org/feedback this link]. Your feedback gets collected at http://input.mozilla.org/, where a team of people read it and gather data about the most common issues.

  • "move to new window" opens blank window (no content)

    On a tab with content I right click and select "move to new window". A new window opens with an empty "New Tab". The content is still in the old window. Feature worked fine in 3.xx

    I find I have the blank windows open only when "cool previews" is enabled. I would like to be able to use both features.

  • Firefox is adding advertising links to certain words on my website cornish-surfing.co.uk, and when I open a new tab an additional window opens with unwanted sit

    Firefox is adding advertising links to certain words on my website cornish-surfing.co.uk, and when I open a new tab an additional window opens with unwanted sites.
    1. How can I stop these things from happening?
    2. Why is it happening?
    These things only happen when I’m using the Firefox browser. I use Sophos antivirus and firewall and the scans indicate my system is clean. So I’m assuming that it’s built into Firefox or there’s a security flaw with Firefox.
    Can you let me know which and how I can stop it from happening?
    Graham Jappé

    hello, this sounds like a problem possibly caused by adware on your pc (certainly nothing that is shipping with a plain official firefox build).
    please go to ''firefox > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc). also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and run a full scan of your system with the security software that you have in place and different other tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

Maybe you are looking for

  • Error while selecting DB link

    Hi, I create Public DB link when I run query select * from ADDRESS@DBLINK; it run ok but when I run select emp_code,valid from ADDRESS@DBLINK; it shows invalid identifier could anybody help

  • Getting video from the Iphone 4 to the mac

    I took a rather large video on my Iphone and now I need to get it to my mac. I've tried uploading to mobile me but it's taking a zillion years. It's wayyyyy to large for Iphoto and I can't get my phone to show up in Imovie. On the page about Iphone 4

  • ITunes crashes / errors out when attempting to get Outlook 2003 contacts

    OS: XP Pro SP2 APPS: Office Pro 2003 SP2, iTunes v.6.0.4.2 Hardware: iPod Nano 2GB Problem: When I sync my ipod nano, iTunes opens, the music syncs and then I get an error: "iTunes cannot copy contacts to the iPod 'my name'" Probable Cause: I install

  • Callable Object DataForms Input not found

    Hi Experts, I am using NW2004s.I need to create a Callable Object which takes input parameters and display output parameters. Here i don't see Data Forms>Input while creating callable object.which one is the best option for creating callable object s

  • Icon + Master Template colours not matching

    Hello: I created an icon image using photoshop to match the colour of our SharePoint site but when I upload it to the site it shows up a different colour. I have tried saving it 'for web' but still looks different. See below. Does anyone know how to