Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.
oncommand
Type: script code
This event handler is called when the command is activated. This occurs when a user selects a menu item or presses a keyboard shortcut attached to the command.

Example 1: in-line code

<button label="Click me" oncommand="alert('Hi')"/>

Example 2: function with source argument

<button label="Click me" oncommand="doSomeProcessing(event.target)"/>
And here is the definition of the function:
function doSomeProcessing(source) {
  alert("source: " + source);
  return true;
}

See also

command element

Document Tags and Contributors

 Contributors to this page: Sheppy, jswisher, M1k., pippijn, madarche, Marsf, BenoitL, Mgjbot, Marcoos, Pmash, Dria
 Last updated by: Sheppy,