Button.onclick

Description

This property represents the function executed when the button is clicked.

Example:

The below example opens a new tab when the extension's button is clicked.

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

// Set the button's properties
var properties = {
  disabled: false,
  title: "My Extension",
  icon: "images/icon_18.png",
  onclick: function() {
    var tab = opera.extension.tabs.create();
  }
};	

// Create and add the button to the toolbar
var button = opera.contexts.toolbar.createItem(properties);
opera.contexts.toolbar.addItem(button);
// // The background process (e.g. index.html) // // Set the button's properties var properties = { disabled: false, title: // // The background process (e.g. index.html) // // Set the button's properties var properties = { disabled: false, title:

This article is licensed under a Creative Commons Attribution 3.0 Unported license.

Comments

You must be logged in to write a comment. If you're not a registered member, please sign up.