Multiple tabs of same origin

DUPLICATE tabs of the same origin are suddenly showing up, i.e. two tabs of my yahoo mail.
In addition, "yesterday" I was on the FEDEX website, and ever since then, a tab for FEDEX keeps popping up, even though I didn't initiate it.
I've removed misc. add-ons that could be causing the problem, but that hasn't helped.
Any ideas. Very strange.
Norm

The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
To Reset Firefox do the following:
#Go to Firefox > Help > Troubleshooting Information.
#Click the "Reset Firefox" button.
#Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
#Firefox will open with all factory defaults applied.
Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
Did this fix your problems? Please report back to us!

Similar Messages

  • Filter data in multiple tabs from same XMLDataSet

    Hi All:
    What I need to do is display the content from one XML file in
    several different modes. I would prefer to use only one data call
    if possible because all information exists in the one file;
    however, I have not yet found a way to successfully filter the data
    on load.
    The data needs to display in three modes: alphabetically, by
    phase, and by owner. The Spry tab widget is used to create the
    'modes'. Within each mode, I need to break it down further. The
    alphabetical listing exists as an additional tabbed subset -- one
    tab for each letter. The phases and owner tabs also have sub tab
    arrangements.
    Within each secondary tab, the data needs to display based
    the first letter in its name field. Therefore on tabbed panel 'A',
    I need to have a table with those documents whose name begins with
    an 'a'; tabbed panel 'B' with a table with all the docs beginning
    with b, etc. The alpha listing has 26 sub tabs. The owner and phase
    listings 8 each. Each panel will contain a table. The information
    simple repeats in different arrangements.
    While using the alpha listing as an example, I can filter the
    data theoretically on tabs B - Z via an on click method, I also
    need to filter the 'A' to show ONLY 'A' on load. I have not found a
    way to do both of these tricks. Additionally when you click back an
    forth between tabs, the data disappears.
    While a database would be easier, I cannot use one. The data
    is generated from an Excel spreadsheet into the xml file from which
    the data is called by Spry.
    I am flummoxed. I have included the relevant code snippets
    below, including the tabs and the first panel which includes the
    table code which repeats in each tabbed panel.
    Thanks for your help.
    Skip Keats
    CODE SNIPPETS (Comment out = previous tries):
    <script src="../assets/spry/xpath.js"
    type="text/javascript"></script>
    <script src="../assets/spry/SpryData.js"
    type="text/javascript"></script>
    <script src="../assets/spry/SpryTabbedPanels.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsSDLC = new
    Spry.Data.XMLDataSet("../assets/data/sdlc_doc_templates.xml",
    "worksheets/worksheet",{sortOnLoad:"SDLC_Template_Document_Name",sortOrderOnLoad:"ascendi ng",distinctOnLoad:true});
    dsSDLC.setColumnType("SDLC_LastModified", "date");
    function aA(ds, row, index){ var c =
    row.SDLC_Template_Document_Name.charAt(0); return c != 'A' ? null :
    row; };
    function aB(ds, row, index){ var c =
    row.SDLC_Template_Document_Name.charAt(0); return c != 'B' ? null :
    row; };
    function aC(ds, row, index){ var c =
    row.SDLC_Template_Document_Name.charAt(0); return c != 'C' ? null :
    row; };
    //function loadFilter(f) { dsSDLC.addFilter(f, true); }
    var dsAlphaA = dsSDLC;
    var dsAlphaB = dsSDLC;
    var dsAlphaC = dsSDLC;
    if (document.getElementById('pAlphaA')) {
    dsAlphaA.filter(aA); }
    if (document.getElementById('pAlphaB')) {
    dsAlphaB.filter(aB); }
    if (document.getElementById('pAlphaC')) {
    dsAlphaC.filter(aC); }
    /*var rgnA = Spry.Data.getRegion('dsAlphaA');
    var rgnB = Spry.Data.getRegion('dsAlphaB');
    var rgnC = Spry.Data.getRegion('dsAlphaC');
    if (rgnA) { dsAlphaA.filter(aA); }
    if (rgnB) { dsAlphaB.filter(aB); }
    if (rgnC) { dsAlphaC.filter(aC); }
    //var rgnA = Spry.Data.getRegion('pAlphaA');
    //var rgnB = Spry.Data.getRegion('pAlphaB');
    //var rgnC = Spry.Data.getRegion('pAlphaC');*/
    /*if (rgnA) {
    var name = rgn.getState();
    if (name == "loading") { loadFilter(aA); }
    if (rgnB) {
    var name = rgn.getState();
    if (name == "loading") { loadFilter(aB); }
    if (rgnC) {
    var name = rgn.getState();
    if (name == "loading") { loadFilter(aC); }
    <div id="sdlcFull" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab"
    tabindex="0">Alpha</li>
    <li class="TabbedPanelsTab"
    tabindex="0">Phase</li>
    <li class="TabbedPanelsTab"
    tabindex="0">Owner</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">
    <p>
    This is an alphabetical listing of the library.
    </p>
    <div id="sdlcAlpha" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li id="tAlphaA" class="TabbedPanelsTab"
    tabindex="0">A</li>
    <li id="tAlphaB" class="TabbedPanelsTab"
    tabindex="0">B</li>
    <li id="tAlphaC" class="TabbedPanelsTab"
    tabindex="0">C</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div id="pAlphaA" class="TabbedPanelsContent"
    spry:region="dsAlphaA">
    <table>
    <thead>
    <tr>
    <th id="DocName">Template Document Name</th>
    <th id="DocOwner">Document Owner</th>
    <th id="Phase">Phase</th>
    <th id="LastMod">Document Modified On</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
    <td colspan="4">Info</td>
    </tr>
    </tfoot>
    <tbody>
    <tr spry:repeat="dsAlphaA">
    <td id="RA{ds_RowID}" headers="DocName"><a
    href="{SDLC_Document_File_Name}"
    title="{SDLC_Template_Document_Name}
    {SDLC_Description}">{SDLC_Template_Document_Name}</a></td>
    <td headers="RA{ds_RowID}
    DocOwner">{SDLC_Document_Owner}</td>
    <td headers="RA{ds_RowID}
    Phase">{SDLC_Phase}</td>
    <td headers="RA{ds_RowID}
    LastMod">{SDLC_LastModified}</td>
    </tr>
    </tbody>
    </table>
    </div>
    <div id="pAlphaB" class="TabbedPanelsContent"
    spry:region="dsAlphaB">
    <table>
    <thead>
    <tr>
    <th id="DocName">Template Document Name</th>
    <th id="DocOwner">Document Owner</th>
    <th id="Phase">Phase</th>
    <th id="LastMod">Document Modified On</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
    <td colspan="4">Info</td>
    </tr>
    </tfoot>
    <tbody>
    <tr spry:repeat="dsAlphaB">
    <td id="RA{ds_RowID}" headers="DocName"><a
    href="{SDLC_Document_File_Name}"
    title="{SDLC_Template_Document_Name}
    {SDLC_Description}">{SDLC_Template_Document_Name}</a></td>
    <td headers="RA{ds_RowID}
    DocOwner">{SDLC_Document_Owner}</td>
    <td headers="RA{ds_RowID}
    Phase">{SDLC_Phase}</td>
    <td headers="RA{ds_RowID}
    LastMod">{SDLC_LastModified}</td>
    </tr>
    </tbody>
    </table>
    </div>
    <div id="pAlphaC" class="TabbedPanelsContent"
    spry:region="dsAlphaC">
    <table>
    <thead>
    <tr>
    <th id="DocName">Template Document Name</th>
    <th id="DocOwner">Document Owner</th>
    <th id="Phase">Phase</th>
    <th id="LastMod">Document Modified On</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
    <td colspan="4">Info</td>
    </tr>
    </tfoot>
    <tbody>
    <tr spry:repeat="dsAlphaC">
    <td id="RA{ds_RowID}" headers="DocName"><a
    href="{SDLC_Document_File_Name}"
    title="{SDLC_Template_Document_Name}
    {SDLC_Description}">{SDLC_Template_Document_Name}</a></td>
    <td headers="RA{ds_RowID}
    DocOwner">{SDLC_Document_Owner}</td>
    <td headers="RA{ds_RowID}
    Phase">{SDLC_Phase}</td>
    <td headers="RA{ds_RowID}
    LastMod">{SDLC_LastModified}</td>
    </tr>
    </tbody>
    </table>
    </div>
    </div>
    </div>
    </div>

    A table control is a 2D array of strings. Thus, you have to work within the rules of how to add elements to a 2D array. The primary rule is that it must always be rectangular. The default paste action on a table control will try to insert rows/columns depending on the contents of the clipboard. Thus, if your initial table 2 contained no data, and you tried to paste two cells, they would end up at the top-left corner, not in rows 4 and 5. Even if there were data already present (or just blank cells, which would be empty strings), the paste would not overwrite the contents - it would insert rows/columns.
    This means you need to override the way the paste works. The easiest way to do this is with an event structure, and you handle the target table control's "Shortcut Menu Selection (App)" event. Here you can use the Point to Row Column method to get the row/column where the cursor was located. Then, you can determine whether to use Replace Array Subset or Insert Into Array to replace the cell contents, or add new ones if the user is pasting beyond the 2D array contents.

  • Firefox 7 not allowing to open same website in multiple tab, when try to open another tab it just jump to the original tab

    Firefox 7 not allowing to open multiple tabs of same website. when tried to open new tab of already open web page then it just jump to the original tab alreay open and not allowing me to open multiple instance of same site.

    https://addons.mozilla.org/firefox/addon/switch-to-tab-no-more/
    https://addons.mozilla.org/firefox/addon/switch-to-tab-blacklist/
    courtesy of Gryllida

  • Dynamic Template report on multiple tab

    Hi
    I am trying to develop reports using dynamic template .Now I  want  another  template on another Tab ( work sheet ) on same work book .Can any body suggest me how to do it ?
    Let me explain in  another way. I want multiple template reports on multiple tab of same work book.When I go to next new blank sheet , I don't get reporting option on action pane.
    Thanks
    SN

    Perhaps you could solve this using existing Excel functionality as follows:
    Right click on the worksheet name of the sheet with the existing report (eg. Trend)
    Select Move or Copy
    Choose the Create a Copy check box
    Click OK
    if building an EVDRE on the new sheet, you could type =EVDRE() then click on the Refresh Workbook button in the BPC toolbar.

  • Having multiple tabs open in one window, and then opening a new window and closing it, will close the newly opened window, but it will want to close the other original window with the multiple tabs as well.

    This only happens if the original window has multiple tabs, and the new window has only ONE tab at the moment you close it.
    Also, the problem only occurs when TWO windows of firefox are open. So opening up a 3rd window, and then closing it, will not give you any problems. The interaction occurs between two windows of firefox only.

    This can happen if you drag a tab slightly down in the browser window while clicking.
    Firefox has a feature called tear-off tabs
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.
    You can also do this via the right-click context menu of a tab: Move to New Window
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • After updating firefox today to 6.0, firefox is unable to load multiple tabs at the same time. When I try, firefox refuses to load any pages, and instead is stuck trying to connect to each page.

    After I updated firefox to 6.0 today firefox has developed a problem loading multiple tabs. When I try to load 10+ tabs, either at the same time or by opening each tab separately, each tab is stuck trying to connect to the desired page. This continues if I close all the tabs and try to load a single page, the single page is unable to get pass connecting. In order to load a new page when this situation arises I must close down firefox and start again, and the program has no history of the previous session.

    Other solutions
    * https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting#w_other-solutions
    Do a MALWARE check with these Malware Scanning programs. You need to scan with all programs because each program detects different malware. Make sure that you UPDATE each program to get the latest version of their databases before doing a scan.
    * Malwarebytes' Anti-Malware - http://www.malwarebytes.org/mbam.php
    * SuperAntispyware - http://www.superantispyware.com/
    * Windows Defender Home Page -
    http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    * Spybot Search & Destroy - http://www.safer-networking.org/en/index.html
    * Ad-Aware Free - http://www.lavasoft.com/products/ad_aware_free.php
    There are also specialized forums for Malware Removal such as those listed below, where you might be able to get more help:
    * Bleeping Computer Forums - http://www.bleepingcomputer.com/forums/
    * Spyware Warrior Forums - http://www.spywarewarrior.com/index.php
    * SWI Forums - http://www.spywareinfoforum.com/
    Check and tell if its working.

  • I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    Question
    I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    I'll try to make this clear. I USED to be able to left click on a hyper link and the hyper link would open in a NEW tab. Now for some unknown reason the hyper link by default opens in the same tab (window). I have to right click the hyper link in order for it to open in a NEW tab. (Yes, my 'tools'> 'options'> 'tabs' are set to "open new windows in a new tab." (Please no answers telling me to get rid of the Ask toolbar because I don't have one.) Thank you.

  • With multiple tabs videos all play at same time

    When I have multiple tabs open the tabs with videos all try to play at the same time

    Hi crazychief,
    Some websites will have this tag set for their videos as a default. You could try:
    * Type about:config in the address bar and hit enter.
    * Agree that you'll be careful
    * Search for media.autoplay.enabled
    * Double click to change the value to false
    Hopefully this helps!

  • Button links open in multiple tabs in my browser but links open same tab on co-worker's pc?

    Mac OSX 10 .7.4 / Indesign CS 5.5
    Exported inDesign to interactive pdf, button links are able to open in multiple tabs in my browser which is what I want, but on my co-workers windows PC, the same links open within that same tab? 

    Which browser? Try configuring the browser as inthis

  • I would like to have the same tabs open when I reopen Firfox, how can I set this in Firefox, it is reopening with only one tab not multiple tabs

    I want to close Firefox with multiple tabs and reopen with the same multiple tabs, how do I do this?

    Based on the info above i think this article might help. </ br> [[Session Restore#w_configuring-session-restore]]

  • Displaying same record in multiple tabs

    Hi,
    I'm using Jdevelope 11.1.2.3.0.
    I have an AF:TABLE with hundred columns. My requirement is to show them in multiple tabs.
    For example, in the first tab i have to show 10 columns, second tab next 10 columns and do not show the first 10 columns that are shown in first tab.
    Is there any way to achieve this?
    Thanks,
    Vinod

    I find this a strange use case but it's possible to do. You have to drop the same VO on each tab and select the pk and any other column you want to see in a tab. If you don't want to show the pk on every tab you can hide it (but is must be part of the table).
    Timo

  • Firefox opens new tabs automatically, so i end up with multiple tabs of the same site. it's like it is consistantly trying to restore my last session.

    Firefox keeps reloading tabs from my recent history over and over. So i might end up with multiple tabs of Pandora, Google home page or other sites I go to all the time-all running at the same time . rebooting does not help.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Multiple accounts with same email can't acces original account

    ok, so i created a new skype. I was messing with skype account on my desktop and wound up unlinking and re linking the account basically i made 2 extra accounts and they have my live: random.namehere_1 and live: random.namehere_2 and i cant log into my original one anymore also when i try to do a recovery it says i have 2-3 skype accounts on my email and i cant log into my accounts by typing in the live:random.namehere and the  password it just says ooops something went wrong basicallly saying the pw and account name are wrong when they arent i made sure of it. so how do i eliminate the cloned accounts and log into the main one.  

    Actually this morning I was able to log on the account from an iPad with no fuss but the pc refuses to sign in^^^!???! "Skype couldn't connect" - What is going on???
    I also found out that I could sign in via a browser but not via skype program... So I uninstalled it and installed it again and it's working now...
    I have now changed the email so I don't have 3 accounts with the same primary email as Skype seems to not being able to handle multiple accounts with same email!!!

  • How can I merge all of the new FF windows that are open into one window with multiple tabs? Safari has a merge windows feature that I like. This is really nice when conducting reasearch on multiple sites at the same time.

    When I clik on weblinks they all open into new windows making it somewhat painful to clik on window in the menu bar to go to each new page. I would rather have a feature that would allow me to merge all of those individual windows into tabs within one page.
    == This happened ==
    Every time Firefox opened

    Thank you. That worked. I was able to open 1 window with multiple tabs. Thanks cor-el!

  • How can I actually open multiple tabs of the same site, instead of performing the new "switch to tab" action?

    For example, sometimes I would like to open multiple tabs of Google Maps to get directions to multiple locations, and I haven't found a way to do so without open a new instance of the browser. Thanks.

    This one colors tabs, but the author warns that it doesn't work with other tab-related extensions, so you probably need to keep searching for one that does everything you want:
    https://addons.mozilla.org/en-US/firefox/addon/colorfultabs/
    If you don't find a do-it-all extension, you can modify the tab titles with a userscript that is specific to that website. This is because the tab displays the text designated in the page as its title.
    You either could "hard code" the list of words for each of the pages, or you could have a script extract information from the page, for example, the first main heading, or some other predictable bit of data. The script then would insert your preferred wording as the title of the page and Firefox will show that on the tab.
    To see how that appears, so you know whether it would be useful, you could do this experiment:
    On a web page that has useless tab text, open the Web Console using command+alt+k (Windows: Ctrl+Shift+k). In the line at the bottom next to the caret, paste the following code and press Enter:
    document.title="Magic!";
    If you decide you want a script written for this, you could try the request forum on userscripts''.''org:
    [http://userscripts.org/forums/2 Ideas and script requests - Userscripts.org]
    Although some people offer small payments, that usually isn't necessary to motivate people to help.
    Let me give you a brief warning about that site, though: over the past year, a lot of popular scripts were duplicated and reposted with additional code that hijacks your Facebook account. Be cautious when installing scripts, check the reviews, make sure there are no references to Facebook.

Maybe you are looking for

  • Screen does not turn on after start up, but after standby on Satellite M100

    Hi, I have quite some experience with computers and laptops, but this problem exhausted all my knowledge. My girlfriend has a Toshiba Satellite M100, PSMA1E. It runs Windows XP, currently on SP3. The laptop always had shutdown/stand bye issues. It wo

  • Unable to open Pages document after emailing to colleague

    I need to send a Pages document to a work colleague, where the document must be in pages format (not pdf or other). We both use G4 powerbooks, latest tiger and iwork. But when I email the pages document (via apple mail), two odd things happen: - the

  • How to determine the value of a Standard Value in a routing operation

    Dear Experts, Kindly guide me on how to detemine the value of my Standard Value in the  operation of my routing, or in the phase of my Master Recipe. I mean what determines the value that I enter for the Standard Values: Machine  and Labor in the pha

  • Hyperlink opening in Oracle

    Hi, In my Oracle database dump file pdf files were stored as BLOB. Is there any way to check the stored hyperlink to open in Oracle 10g? or Any external functionality required to check the stored PDF files whether those were stored properly or not? R

  • Downloads hesitate, not related to router or provider

    My iTunes downloads (of podcasts) used to be really fast. Now I see that they load for 2 secs then wait for ten or so. The download time is huge now. I tried this at another house in another state with a different type of connection and provider, and