« Documentation Home

opera.contexts.toolbar.removeItem()

This documentation relates to Opera's now deprecated .oex Extension API framework for Opera versions <= 12.15 and also provided by our OEX2NEX shim library.

For the latest Opera Extensions API documentation for Opera versions > 12.15 please consult the latest Opera Extensions API documentation online.

Description

This method removes a given Button from the toolbar in the browser.

Parameters:

Syntax:

void removeItem (<Button> item)

Example:

//
// The background process (e.g. index.html)
//

// Create a button
var button = opera.contexts.toolbar.createItem({
  title: 'Weather Extension',
  icon: 'yr.png'
});

// Add it to the browser toolbar
opera.contexts.toolbar.addItem( button );

// Remove the button for a few seconds when someone clicks it
button.addEventListener('click', handleClick, false);
function handleClick() {
  // Remove the button
  opera.contexts.toolbar.removeItem(button);

  // but add it back after a short while
  setTimeout(function() {	
    opera.contexts.toolbar.addItem(button);			
  }, 500);
}