Tabbox

Obsolete since Gecko 1.9.2 (Firefox 3.6 / Thunderbird 3.1 / Fennec 1.0)
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

Add-ons using the techniques described in this document are considered a legacy technology in Firefox. Don't use these techniques to develop new add-ons. Use WebExtensions instead. If you maintain an add-on which uses the techniques described here, consider migrating it to use WebExtensions.

From Firefox 53 onwards, no new legacy add-ons will be accepted on addons.mozilla.org (AMO).

From Firefox 57 onwards, WebExtensions will be the only supported extension type, and Firefox will not load other types.

Even before Firefox 57, changes coming up in the Firefox platform will break many legacy extensions. These changes include multiprocess Firefox (e10s), sandboxing, and multiple content processes. Legacy extensions that are affected by these changes should migrate to WebExtensions if they can. See the "Compatibility Milestones" document for more.

A wiki page containing resources, migration paths, office hours, and more, is available to help developers transition to the new technologies.

Handling onclosetab Event

Assuming the tabbox, tabs, and tabpanels widgets with id's the same as their nodeName, this function will correctly remove the current tab and tab panel for the onclosetab tabs event:

function removeTab(){
    var tabbox = document.getElementById("tabbox");
    var currentIndex = tabbox.selectedIndex;
    if(currentIndex>=0){
    var tabs=document.getElementById("tabs");
    var tabpanels=document.getElementById("tabpanels");
    tabpanels.removeChild(tabpanels.childNodes[currentIndex]);
    tabs.removeItemAt(currentIndex);
    /*Work around If last tab is removed, widget fails to advance to next tab*/
    if(-1 == tabbox.selectedIndex && tabs.childNodes.length>0){
        tabbox.selectedIndex=0;
    }
}

Creating a close tab button

To have a tab close button, you must configure the style.

Examples:

   .tabs-closebutton {
     list-style-image: url(http://mozilla.org/favicon.ico);
   } 
   .tabs-closebutton {
     list-style-image: url("chrome://global/skin/icons/Close.gif");
   } 

Document Tags and Contributors

 Contributors to this page: bunnybooboo, wbamberg, Pc1oad1etter, Sheppy
 Last updated by: bunnybooboo,